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:
authorEitanSomething <eitant13@gmail.com>2019-07-31 13:36:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-31 14:11:38 +0300
commit86029b507194fb88a8eb9c86c83255d76adbafed (patch)
tree958a814074de9bfa44b38bbf320c2c6c071b2ca2
parent4bb9fbd3a852c24db928f393467e1eab3a71af6c (diff)
UI: tweak naming in snapping popover to be "Snap with" and "Snap to"
To replace "Target" and "Snapping", this should be more clear. Differential Revision: https://developer.blender.org/D5242
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index ee3503763af..fc0505d9681 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -5884,7 +5884,7 @@ class VIEW3D_PT_snapping(Panel):
layout = self.layout
col = layout.column()
- col.label(text="Snapping")
+ col.label(text="Snap to")
col.prop(tool_settings, "snap_elements", expand=True)
col.separator()
@@ -5892,7 +5892,7 @@ class VIEW3D_PT_snapping(Panel):
col.prop(tool_settings, "use_snap_grid_absolute")
if snap_elements != {'INCREMENT'}:
- col.label(text="Target")
+ col.label(text="Snap with")
row = col.row(align=True)
row.prop(tool_settings, "snap_target", expand=True)