[Bf-blender-cvs] [21b6983b9d2] blender2.8: UI: minor edits to overlay popover

Campbell Barton noreply at git.blender.org
Thu Jul 12 10:15:35 CEST 2018


Commit: 21b6983b9d2ea41e596071e73056442adc658b3d
Author: Campbell Barton
Date:   Thu Jul 12 10:07:32 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB21b6983b9d2ea41e596071e73056442adc658b3d

UI: minor edits to overlay popover

- Rename "Viewport Info" to "Text Info".
  Name was too vague, nearly everything is information,
  this currently only controls overlay text.

- Swap text-info & 3D-cursor, making 3D-cursor less prominent.

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

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 dd8f1e4611f..7067cd6deca 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4009,9 +4009,9 @@ class VIEW3D_PT_overlay_guides(Panel):
 
         split = col.split()
         sub = split.column()
-        sub.prop(overlay, "show_cursor", text="3D Cursor")
+        sub.prop(overlay, "show_text", text="Text Info")
         sub = split.column()
-        sub.prop(overlay, "show_text", text="Viewport Info")
+        sub.prop(overlay, "show_cursor", text="3D Cursor")
 
         if shading.type == 'MATERIAL':
             col.prop(overlay, "show_look_dev")



More information about the Bf-blender-cvs mailing list