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:
authorHans Goudey <h.goudey@me.com>2020-10-16 23:50:15 +0300
committerHans Goudey <h.goudey@me.com>2020-10-16 23:50:15 +0300
commitc275a00a7232cc0a4e9b8410e2395c1588170a2c (patch)
treed7d9103e08bdbb8b1c68c3eda4a23fd0765af32e
parent54da72d3cd546ecbd2560d7d57cbed33064bbee1 (diff)
UI: Align related properties
The start and end frame properties are generally aligned in one block.
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c b/source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c
index b1c35452733..9e8d4687979 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c
@@ -233,7 +233,7 @@ static void custom_range_panel_draw(const bContext *UNUSED(C), Panel *panel)
uiLayoutSetActive(
layout, (mode != GP_TIME_MODE_FIX) && (RNA_boolean_get(ptr, "use_custom_frame_range")));
- col = uiLayoutColumn(layout, false);
+ col = uiLayoutColumn(layout, true);
uiItemR(col, ptr, "frame_start", 0, IFACE_("Frame Start"), ICON_NONE);
uiItemR(col, ptr, "frame_end", 0, IFACE_("End"), ICON_NONE);
}