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:
authorPablo Vazquez <pablo@blender.org>2021-07-26 00:57:32 +0300
committerPablo Vazquez <pablo@blender.org>2021-07-26 00:57:32 +0300
commit6a673b60005ce1bffbed4edfc4e8f32efe50c581 (patch)
treebd674d4953e147501abfae197fbd4178e6e13ee3
parent8fda1f363aac12daa5b848235df9ab4b323e5ae3 (diff)
UI: Fix button alignment on Grease Pencil modifiers
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.c b/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.c
index a79e212b9db..e750c22f0e8 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.c
@@ -346,7 +346,7 @@ static void gpencil_modifier_panel_header(const bContext *UNUSED(C), Panel *pane
uiItemMenuF(row, "", ICON_DOWNARROW_HLT, gpencil_modifier_ops_extra_draw, md);
/* Remove button. */
- sub = uiLayoutRow(row, true);
+ sub = uiLayoutRow(row, false);
uiLayoutSetEmboss(sub, UI_EMBOSS_NONE);
uiItemO(sub, "", ICON_X, "OBJECT_OT_gpencil_modifier_remove");