-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.py
38 lines (32 loc) · 1.29 KB
/
registration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from . import preferences
from . import tool
from . import translation
from .tool.remember_addon_expanded import restore_addons_expanded
from .tool.remember_addon_search import restore_addon_search
from .utils import clear_cache
DEVELOPMENT_KEY_MAPS = {
"Window": [
{"idname": "wm.window_fullscreen_toggle", "type": "SPACE", "value": "PRESS", "alt": True},
{"idname": "wm.console_toggle", "type": "MIDDLEMOUSE", "value": "PRESS", "ctrl": True, "alt": True},
{"idname": "wm.save_homefile", "type": "ACCENT_GRAVE", "value": "PRESS", "ctrl": True, "alt": True},
{"idname": "wm.context_toggle", "type": "RIGHTMOUSE", "value": "PRESS", "ctrl": True, "alt": True,
"properties": {"data_path": "preferences.view.use_translate_interface"}
},
],
"Screen": [
{"idname": "screen.userpref_show", "type": "U", "value": "PRESS", "ctrl": True, "alt": True},
{"idname": "screen.region_flip", "type": "RIGHTMOUSE", "value": "PRESS", "shift": True, "ctrl": True}
]
}
def register():
clear_cache()
preferences.register()
tool.register()
restore_addon_search()
restore_addons_expanded()
translation.register()
def unregister():
clear_cache()
tool.unregister()
preferences.unregister()
translation.unregister()