GPencil: Reorganize Advanced Brush panel

The Ignore Transparent Strokes and the Factor are related, so it's better disable factor if the checkbox is disabled.
This commit is contained in:
Antonio Vazquez 2020-08-05 18:25:43 +02:00
parent e03d53874d
commit 9e644b98a6
1 changed files with 9 additions and 2 deletions

View File

@ -1375,6 +1375,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_advanced(View3DPanel, Panel):
bl_parent_id = 'VIEW3D_PT_tools_grease_pencil_brush_settings'
bl_category = "Tool"
bl_options = {'DEFAULT_CLOSED'}
bl_ui_units_x = 12
@classmethod
def poll(cls, context):
@ -1432,8 +1433,14 @@ class VIEW3D_PT_tools_grease_pencil_brush_advanced(View3DPanel, Panel):
col.separator()
col.prop(gp_settings, "fill_factor", text="Resolution")
if gp_settings.fill_draw_mode != 'STROKE':
col.prop(gp_settings, "show_fill", text="Ignore Transparent Strokes")
col.prop(gp_settings, "fill_threshold", text="Threshold")
col = layout.column(align=False, heading="Ignore Transparent")
col.use_property_decorate = False
row = col.row(align=True)
sub = row.row(align=True)
sub.prop(gp_settings, "show_fill", text="")
sub = sub.row(align=True)
sub.active = gp_settings.show_fill
sub.prop(gp_settings, "fill_threshold", text="")
class VIEW3D_PT_tools_grease_pencil_brush_stroke(Panel, View3DPanel):