[Bf-blender-cvs] [8433ed76b2f] blender2.8: UI: re-order navigate manipulator

Campbell Barton noreply at git.blender.org
Fri Jun 1 22:38:56 CEST 2018


Commit: 8433ed76b2fc9a0017f256031911a0e4608086f9
Author: Campbell Barton
Date:   Fri Jun 1 22:37:27 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB8433ed76b2fc9a0017f256031911a0e4608086f9

UI: re-order navigate manipulator

Looked as if size applied to navigation too.

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 5c9c3ea1c67..1e090884fd1 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -289,13 +289,14 @@ class USERPREF_PT_interface(Panel):
         #col.prop(view, "open_left_mouse_delay", text="Hold LMB")
         #col.prop(view, "open_right_mouse_delay", text="Hold RMB")
         col.prop(view, "show_manipulator")
-        col.prop(view, "show_manipulator_navigate")
         ## Currently not working
         # col.prop(view, "show_manipulator_shaded")
         sub = col.column()
         sub.active = view.show_manipulator
         sub.prop(view, "manipulator_size", text="Size")
 
+        col.prop(view, "show_manipulator_navigate")
+
         col.separator()
         col.separator()
         col.separator()



More information about the Bf-blender-cvs mailing list