[Bf-blender-cvs] [9ca8f40790d] blender2.8: Keymap: remove double space in tool-keymap

Campbell Barton noreply at git.blender.org
Sat Jul 14 09:11:26 CEST 2018


Commit: 9ca8f40790db6c40f260090a380be7ddb18e1dfa
Author: Campbell Barton
Date:   Sat Jul 14 09:02:36 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB9ca8f40790db6c40f260090a380be7ddb18e1dfa

Keymap: remove double space in tool-keymap

===================================================================

M	release/scripts/startup/bl_ui/space_toolsystem_toolbar.py

===================================================================

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):



More information about the Bf-blender-cvs mailing list