Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2020-11-02 19:18:21 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-11-02 19:18:55 +0300
commit576bd9862209125c03dc1b12afb0aade618f9bc0 (patch)
tree31f292c1576bdf7c081182818c7b77f73079d448 /release
parentaee1e4fc6a1f434ebec0b8d5ddbfb8096c99d0e2 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 97e87f5451c..d9dbb60b3b6 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -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):