Skip to content

Commit 291d38b

Browse files
committed
Implement dockable toolbars
1 parent 9903f4e commit 291d38b

3 files changed

Lines changed: 449 additions & 66 deletions

File tree

anylabeling/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def update_dict(target_dict, new_dict, validate_item=None):
2222
if validate_item:
2323
validate_item(key, value)
2424
# Special handling for recognized new keys
25-
if key not in target_dict and key in ["theme"]:
25+
if key not in target_dict and key in ["theme", "ui"]:
2626
target_dict[key] = value
2727
continue
2828
if key not in target_dict:

anylabeling/configs/anylabeling_config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,7 @@ shortcuts:
119119

120120
# Auto labeling
121121
custom_models: []
122+
123+
# UI settings
124+
ui:
125+
dock_state: null

0 commit comments

Comments
 (0)