Use <Space> as mark all as confirmed/labeled and go to next frame

Also add back <Backspace> hotkey
This commit is contained in:
Mika Fischer
2011-08-02 17:17:28 +02:00
parent 5d66746a85
commit 8edbfb59ee
+5
View File
@@ -70,6 +70,11 @@ LABELS = (
# third entry -- if present -- is expected to be a string describing the
# action.
HOTKEYS = (
('Space', [lambda lt: lt.currentImage().confirmAll(),
lambda lt: lt.currentImage().setUnlabeled(False),
lambda lt: lt.gotoNext()
], 'Mark image as labeled/confirmed and go to next'),
('Backspace', lambda lt: lt.gotoPrevious(), 'Previous image/frame'),
('PgDown', lambda lt: lt.gotoNext(), 'Next image/frame'),
('PgUp', lambda lt: lt.gotoPrevious(), 'Previous image/frame'),
('Tab', lambda lt: lt.selectNextAnnotation(), 'Select next annotation'),