Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-14 10:02:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-14 10:02:36 +0300
commit9ca8f40790db6c40f260090a380be7ddb18e1dfa (patch)
treef6a68803e82ac9398d4343811c3a7f20e824a71e
parent19a55b5a007725bc659f057312a4a70894b6a467 (diff)
Keymap: remove double space in tool-keymap
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index b0bff84b8eb..527dfdc3c6f 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -874,7 +874,7 @@ class IMAGE_PT_tools_active(ToolSelectPanelHelper, Panel):
bl_options = {'HIDE_HEADER'}
# Satisfy the 'ToolSelectPanelHelper' API.
- keymap_prefix = "Image Editor Tool: "
+ keymap_prefix = "Image Editor Tool:"
@classmethod
def tools_from_context(cls, context, mode=None):
@@ -925,7 +925,7 @@ class VIEW3D_PT_tools_active(ToolSelectPanelHelper, Panel):
bl_options = {'HIDE_HEADER'}
# Satisfy the 'ToolSelectPanelHelper' API.
- keymap_prefix = "3D View Tool: "
+ keymap_prefix = "3D View Tool:"
@classmethod
def tools_from_context(cls, context, mode=None):