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:
Sybren A. Stüvel
2020-11-02 17:18:21 +01:00
parent aee1e4fc6a
commit 576bd98622

View File

@@ -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):