[Bf-blender-cvs] [86029b50719] master: UI: tweak naming in snapping popover to be "Snap with" and "Snap to"

EitanSomething noreply at git.blender.org
Wed Jul 31 13:11:46 CEST 2019


Commit: 86029b507194fb88a8eb9c86c83255d76adbafed
Author: EitanSomething
Date:   Wed Jul 31 12:36:19 2019 +0200
Branches: master
https://developer.blender.org/rB86029b507194fb88a8eb9c86c83255d76adbafed

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

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

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

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

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)



More information about the Bf-blender-cvs mailing list