[Bf-blender-cvs] [18103c9ec26] blender2.8: UI: expand tooltips for left/right click select.

Brecht Van Lommel noreply at git.blender.org
Mon Nov 26 13:57:50 CET 2018


Commit: 18103c9ec260dc6570a81c37f83cf4a9c461a32a
Author: Brecht Van Lommel
Date:   Mon Nov 26 12:18:28 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB18103c9ec260dc6570a81c37f83cf4a9c461a32a

UI: expand tooltips for left/right click select.

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

M	release/scripts/presets/keyconfig/blender.py
M	release/scripts/presets/keyconfig/blender_27x.py

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

diff --git a/release/scripts/presets/keyconfig/blender.py b/release/scripts/presets/keyconfig/blender.py
index eb5444eb77a..32431ae4d43 100644
--- a/release/scripts/presets/keyconfig/blender.py
+++ b/release/scripts/presets/keyconfig/blender.py
@@ -18,8 +18,10 @@ class Prefs(bpy.types.KeyConfigPreferences):
     select_mouse: EnumProperty(
         name="Select Mouse",
         items=(
-            ('LEFT', "Left", "Use left Mouse Button for selection"),
-            ('RIGHT', "Right", "Use Right Mouse Button for selection"),
+            ('LEFT', "Left", "Use left mouse button for selection. "
+                             "The standard behavior that works well for all input devices"),
+            ('RIGHT', "Right", "Use right mouse button for selection."
+                               "For efficiently working with keyboard and mouse"),
         ),
         description=(
             "Mouse button used for selection"
diff --git a/release/scripts/presets/keyconfig/blender_27x.py b/release/scripts/presets/keyconfig/blender_27x.py
index 54f10e89402..67d818cdc59 100644
--- a/release/scripts/presets/keyconfig/blender_27x.py
+++ b/release/scripts/presets/keyconfig/blender_27x.py
@@ -17,8 +17,10 @@ class Prefs(bpy.types.KeyConfigPreferences):
     select_mouse: EnumProperty(
         name="Select Mouse",
         items=(
-            ('LEFT', "Left", "Use left Mouse Button for selection"),
-            ('RIGHT', "Right", "Use Right Mouse Button for selection"),
+            ('LEFT', "Left", "Use left mouse button for selection. "
+                             "Standard behavior that works well for all input devices"),
+            ('RIGHT', "Right", "Use right mouse button for selection."
+                               "For efficiently working with keyboard and mouse"),
         ),
         description=(
             "Mouse button used for selection"



More information about the Bf-blender-cvs mailing list