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:
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user