[Bf-blender-cvs] [995a573d30c] greasepencil-object: User Prefs: Make it clearer which properties affect Annotations only vs GP + Annotations

Joshua Leung noreply at git.blender.org
Mon Jul 9 09:45:28 CEST 2018


Commit: 995a573d30cbeff1b50854ced86c0bab1ca44ce1
Author: Joshua Leung
Date:   Mon Jul 9 19:45:21 2018 +1200
Branches: greasepencil-object
https://developer.blender.org/rB995a573d30cbeff1b50854ced86c0bab1ca44ce1

User Prefs: Make it clearer which properties affect Annotations only vs GP + Annotations

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

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 ca240d5a666..6debcb0fa92 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -382,14 +382,16 @@ class USERPREF_PT_edit(Panel):
         row.separator()
 
         col = row.column()
-        col.label(text="Grease Pencil:")
+        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, "grease_pencil_default_color", text="Default Color")
-        col.separator()
         col.prop(edit, "use_grease_pencil_simplify_stroke", text="Simplify Stroke")
         col.separator()
         col.separator()



More information about the Bf-blender-cvs mailing list