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:
authorCampbell Barton <ideasman42@gmail.com>2018-07-12 11:07:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-12 11:14:19 +0300
commit21b6983b9d2ea41e596071e73056442adc658b3d (patch)
tree16a54afceceb4efc47f4fcc6501bb94978504a2d /release/scripts
parent963da9ff6e1c87bf340b5832f0c1ba2c28cbb338 (diff)
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.
Diffstat (limited to 'release/scripts')
-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 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")