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:
Diffstat (limited to 'release/scripts/presets/keyconfig/Blender.py')
-rw-r--r--release/scripts/presets/keyconfig/Blender.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/presets/keyconfig/Blender.py b/release/scripts/presets/keyconfig/Blender.py
index 1852e150589..35c920b3f40 100644
--- a/release/scripts/presets/keyconfig/Blender.py
+++ b/release/scripts/presets/keyconfig/Blender.py
@@ -56,7 +56,7 @@ class Prefs(bpy.types.KeyConfigPreferences):
update=update_fn,
)
tool_key_mode: EnumProperty(
- name="Tool Keys:",
+ name="Tool Keys",
description=(
"The method of keys to activate tools such as move, rotate & scale (G, R, S)"
),
@@ -242,13 +242,13 @@ class Prefs(bpy.types.KeyConfigPreferences):
# General settings.
col = layout.column()
- col.row().prop(self, "select_mouse", text="Select with Mouse Button:", expand=True)
- col.row().prop(self, "spacebar_action", text="Spacebar Action:", expand=True)
+ col.row().prop(self, "select_mouse", text="Select with Mouse Button", expand=True)
+ col.row().prop(self, "spacebar_action", text="Spacebar Action", expand=True)
if is_select_left:
- col.row().prop(self, "gizmo_action", text="Activate Gizmo Event:", expand=True)
+ col.row().prop(self, "gizmo_action", text="Activate Gizmo Event", expand=True)
else:
- col.row().prop(self, "rmb_action", text="Right Mouse Select Action:", expand=True)
+ col.row().prop(self, "rmb_action", text="Right Mouse Select Action", expand=True)
col.row().prop(self, "tool_key_mode", expand=True)
@@ -271,9 +271,9 @@ class Prefs(bpy.types.KeyConfigPreferences):
# 3DView settings.
col = layout.column()
col.label(text="3D View")
- col.row().prop(self, "v3d_tilde_action", text="Grave Accent / Tilde Action:", expand=True)
- col.row().prop(self, "v3d_mmb_action", text="Middle Mouse Action:", expand=True)
- col.row().prop(self, "v3d_alt_mmb_drag_action", text="Alt Middle Mouse Drag Action:", expand=True)
+ col.row().prop(self, "v3d_tilde_action", text="Grave Accent / Tilde Action", expand=True)
+ col.row().prop(self, "v3d_mmb_action", text="Middle Mouse Action", expand=True)
+ col.row().prop(self, "v3d_alt_mmb_drag_action", text="Alt Middle Mouse Drag Action", expand=True)
# Checkboxes sub-layout.
col = layout.column()