[Bf-blender-cvs] [fb8332b1c07] blender2.8: GP: Reorder Userprefs grease pencil parameters

Antonioya noreply at git.blender.org
Thu Oct 11 19:17:02 CEST 2018


Commit: fb8332b1c0790a82f97f644f81d40aa0904b81e3
Author: Antonioya
Date:   Thu Oct 11 19:14:18 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBfb8332b1c0790a82f97f644f81d40aa0904b81e3

GP: Reorder Userprefs grease pencil parameters

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

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 423f6df9249..1516494abbc 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -268,25 +268,29 @@ class USERPREF_PT_edit(Panel):
         row.separator()
         col = row.column()
 
-        col.label(text="Annotations:")
-        sub = col.row()
-        sub.prop(edit, "grease_pencil_default_color", text="Default Color")
-        col.prop(edit, "grease_pencil_eraser_radius", text="Eraser Radius")
-        col.separator()
         col.label(text="Grease Pencil/Annotations:")
         col.separator()
         col.prop(edit, "grease_pencil_manhattan_distance", text="Manhattan Distance")
         col.prop(edit, "grease_pencil_euclidean_distance", text="Euclidean Distance")
         col.separator()
-        col.prop(edit, "use_grease_pencil_simplify_stroke", text="Simplify Stroke")
+
+        col.label(text="Grease Pencil:")
         col.prop(edit, "use_grease_pencil_reverse_layers", text="Layers order Top-Down")
         col.separator()
+
+        col.label(text="Annotations:")
+        sub = col.row()
+        sub.prop(edit, "grease_pencil_default_color", text="Default Color")
+        col.prop(edit, "grease_pencil_eraser_radius", text="Eraser Radius")
         col.separator()
+        col.prop(edit, "use_grease_pencil_simplify_stroke", text="Simplify Stroke")
+        col.separator()
+
         col.separator()
-        col.label(text="Playback:")
-        col.prop(edit, "use_negative_frames")
         col.separator()
         col.separator()
+        col.label(text="Playback:")
+        col.prop(edit, "use_negative_frames")
         col.separator()
         col.label(text="Node Editor:")
         col.prop(edit, "node_margin")



More information about the Bf-blender-cvs mailing list