Grease Pencil UI code: use row
for rows in the UI
Rename `col` to `row` when it's actually a row (and not a column). No functional changes.
This commit is contained in:
@@ -880,11 +880,11 @@ class GreasePencilLayerDisplayPanel:
|
||||
gpd = ob.data
|
||||
gpl = gpd.layers.active
|
||||
|
||||
col = layout.row(align=True)
|
||||
col.prop(gpl, "channel_color")
|
||||
row = layout.row(align=True)
|
||||
row.prop(gpl, "channel_color")
|
||||
|
||||
col = layout.row(align=True)
|
||||
col.prop(gpl, "use_solo_mode", text="Show Only on Keyframed")
|
||||
row = layout.row(align=True)
|
||||
row.prop(gpl, "use_solo_mode", text="Show Only on Keyframed")
|
||||
|
||||
|
||||
class GreasePencilFlipTintColors(Operator):
|
||||
|
Reference in New Issue
Block a user