Grease pencil (legacy): Remove redundant "Use" for checkboxes

There is already a checkbox, so the word "Use" is redundant. See
https://wiki.blender.org/wiki/Human_Interface_Guidelines/Writing_Style#UI_Labels.
This commit is contained in:
Julian Eisel
2023-10-29 12:33:20 +01:00
parent dffee8b323
commit 69e5f5175b
3 changed files with 3 additions and 3 deletions

View File

@@ -170,7 +170,7 @@ class DATA_PT_gpencil_layers(DataButtonsPanel, Panel):
col.prop(gpl, "opacity", text="Opacity", slider=True)
col = layout.row(align=True)
col.prop(gpl, "use_lights")
col.prop(gpl, "use_lights", text="Lights")
class DATA_PT_gpencil_layer_masks(LayerDataButtonsPanel, GreasePencilLayerMasksPanel, Panel):

View File

@@ -841,7 +841,7 @@ class DOPESHEET_PT_gpencil_mode(LayersDopeSheetPanel, Panel):
row.prop(gpl, "opacity", text="Opacity", slider=True)
row = layout.row(align=True)
row.prop(gpl, "use_lights")
row.prop(gpl, "use_lights", text="Lights")
class DOPESHEET_PT_gpencil_layer_masks(LayersDopeSheetPanel, GreasePencilLayerMasksPanel, Panel):

View File

@@ -159,7 +159,7 @@ class TOPBAR_PT_gpencil_layers(Panel):
icon='MOD_MASK' if gpl.use_mask_layer else 'LAYER_ACTIVE')
srow = col.row(align=True)
srow.prop(gpl, "use_lights")
srow.prop(gpl, "use_lights", text="Lights")
col = row.column()