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:
authorPablo Vazquez <venomgfx@gmail.com>2018-08-02 01:52:45 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-08-02 01:52:54 +0300
commita4623bdfed5bd6121d0d09a9d7f077e379718b9f (patch)
tree6922fced90b8c3c6e0c64822446cc35be9c0bf7c /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent872c5d2763f29110504c45d51f77ae1af540bfef (diff)
UI: Group similar Grease Pencil brush settings
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index ceb0f244bac..dd071f357af 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1522,14 +1522,17 @@ class VIEW3D_PT_tools_grease_pencil_brush_settings(View3DPanel, Panel):
gp_settings = brush.gpencil_settings
layout.active = gp_settings.enable_settings
- layout.prop(gp_settings, "pen_smooth_factor")
- layout.prop(gp_settings, "pen_smooth_steps")
+ col = layout.column(align=True)
+ col.prop(gp_settings, "pen_smooth_factor")
+ col.prop(gp_settings, "pen_thick_smooth_factor")
- layout.prop(gp_settings, "pen_thick_smooth_factor")
- layout.prop(gp_settings, "pen_thick_smooth_steps")
+ col = layout.column(align=True)
+ col.prop(gp_settings, "pen_smooth_steps")
+ col.prop(gp_settings, "pen_thick_smooth_steps")
- layout.prop(gp_settings, "pen_subdivision_steps")
- layout.prop(gp_settings, "random_subdiv", text="Randomness", slider=True)
+ col = layout.column(align=True)
+ col.prop(gp_settings, "pen_subdivision_steps")
+ col.prop(gp_settings, "random_subdiv", text="Randomness", slider=True)
class VIEW3D_PT_tools_grease_pencil_brush_random(View3DPanel, Panel):