UI: expand tooltips for left/right click select.

This commit is contained in:
Brecht Van Lommel 2018-11-26 12:18:28 +01:00
parent fea3451cf2
commit 18103c9ec2
2 changed files with 8 additions and 4 deletions

@ -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"

@ -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"