You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keybinds can be set to control the annotation session. The default values are:
361
-
```javascript
362
-
{
363
-
"annotation_size_small":"s",
364
-
"annotation_size_large":"l",
365
-
"annotation_size_plus":"=",
366
-
"annotation_size_minus":"-",
367
-
"annotation_vanish":"v"
368
-
}
369
-
```
370
-
371
359
### `distance_filter_toolbox_item`
372
360
Configuration object for the `FilterDistance` toolbox item with the following custom definitions:
373
361
```javascript
@@ -437,8 +425,11 @@ The `AnnotationList` toolbox item displays all annotations in the current subtas
437
425
438
426
This toolbox item requires no configuration and can be added to the `toolbox_order` array using `AllowedToolboxItem.AnnotationList`.
439
427
440
-
### `change_zoom_keybind`
441
-
Keybind to change the zoom level. Must be a letter, and the lowercase version of the letter will set the zoom level to the `initial_crop`, while the capitalized version will show the full image. Default is `r`.
428
+
### `reset_zoom_keybind`
429
+
Keybind to reset the zoom level to the `initial_crop`. Default is `r`.
430
+
431
+
### `show_full_image_keybind`
432
+
Keybind to set the zoom level to show the full image. Default is `shift+r`.
442
433
443
434
### `create_point_annotation_keybind`
444
435
Keybind to create a point annotation at the mouse location. Default is `c`. Requires the active subtask to have a `point` mode.
@@ -461,7 +452,7 @@ Keybind to switch between subtasks. Default is `z`.
461
452
### `toggle_annotation_mode_keybind`
462
453
Keybind to toggle between annotation and selection modes. Default is `u`.
463
454
464
-
### `create_bbox_on_initial_crop`
455
+
### `create_bbox_on_initial_crop_keybind`
465
456
Keybind to create a bounding box annotation around the `initial_crop`. Default is `f`. Requires the active subtask to have a `bbox` mode.
466
457
467
458
### `toggle_brush_mode_keybind`
@@ -480,7 +471,22 @@ Keybind to decrease the brush size. Default is `[`. Requires the active subtask
480
471
Keybind to set the zoom to focus on the next annotation. Default is `Tab`, which also will disable any default browser behavior for `Tab`.
481
472
482
473
### `fly_to_previous_annotation_keybind`
483
-
Keybind to set the zoom to focus on the previous annotation. Default is `<null>`, which will default to `Shift+<fly_to_next_annotation_keybind>`.
474
+
Keybind to set the zoom to focus on the previous annotation. Default is `shift+tab`. Supports chord keybinds (e.g., `shift+p`, `ctrl+alt+n`).
475
+
476
+
### `annotation_size_small_keybind`
477
+
Keybind to set the annotation size to small for the current subtask. Default is `s`.
478
+
479
+
### `annotation_size_large_keybind`
480
+
Keybind to set the annotation size to large for the current subtask. Default is `l`.
481
+
482
+
### `annotation_size_plus_keybind`
483
+
Keybind to increment the annotation size for the current subtask. Default is `=`.
484
+
485
+
### `annotation_size_minus_keybind`
486
+
Keybind to decrement the annotation size for the current subtask. Default is `-`.
487
+
488
+
### `annotation_vanish_keybind`
489
+
Keybind to toggle vanish mode for annotations in the current subtask (lowercase toggles current subtask, uppercase toggles all subtasks). Default is `v`.
484
490
485
491
### `fly_to_max_zoom`
486
492
Maximum zoom factor used when flying-to an annotation. Default is `10`, value must be > `0`.
0 commit comments