[Bf-blender-cvs] [c275a00a723] master: UI: Align related properties

Hans Goudey noreply at git.blender.org
Fri Oct 16 22:55:11 CEST 2020


Commit: c275a00a7232cc0a4e9b8410e2395c1588170a2c
Author: Hans Goudey
Date:   Fri Oct 16 15:50:15 2020 -0500
Branches: master
https://developer.blender.org/rBc275a00a7232cc0a4e9b8410e2395c1588170a2c

UI: Align related properties

The start and end frame properties are generally aligned in one block.

===================================================================

M	source/blender/gpencil_modifiers/intern/MOD_gpenciltime.c

===================================================================

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);
 }



More information about the Bf-blender-cvs mailing list