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:
authorYevgeny Makarov <jenkm>2019-08-23 19:41:25 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-23 19:42:26 +0300
commite33fc3c37ba71e6a066dac9faa615909893f895a (patch)
tree70a2cc4ba6629c5bc3ea72b34c79c5a51f824e8e /source/blender/windowmanager
parentc3e4a26816d7be71b01523a0d9b2b0486111ed5b (diff)
UI: layout padding changes to autorun dialog, to match save dialog
Differential Revision: https://developer.blender.org/D5568
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index d17fb84e3d3..8215988c849 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -2836,6 +2836,12 @@ static uiBlock *block_create_autorun_warning(struct bContext *C,
/* Buttons */
uiBut *but;
uiLayout *split = uiLayoutSplit(layout, 0.0f, true);
+ uiLayoutSetScaleY(split, 1.2f);
+
+ /* empty space */
+ col = uiLayoutColumn(split, false);
+ uiItemS(col);
+
col = uiLayoutColumn(split, false);
/* Allow reload if we have a saved file.
@@ -2876,12 +2882,10 @@ static uiBlock *block_create_autorun_warning(struct bContext *C,
TIP_("Enable scripts"));
UI_but_func_set(but, wm_block_autorun_warning_enable_scripts, block, NULL);
}
+ UI_but_drawflag_disable(but, UI_BUT_TEXT_LEFT);
- /* empty space between buttons */
- col = uiLayoutColumn(split, false);
- uiItemS(col);
- col = uiLayoutColumn(split, 1);
+ col = uiLayoutColumn(split, false);
but = uiDefIconTextBut(block,
UI_BTYPE_BUT,
0,
@@ -2898,8 +2902,10 @@ static uiBlock *block_create_autorun_warning(struct bContext *C,
0,
TIP_("Continue using file without Python scripts"));
UI_but_func_set(but, wm_block_autorun_warning_ignore, block, NULL);
+ UI_but_drawflag_disable(but, UI_BUT_TEXT_LEFT);
+ UI_but_flag_enable(but, UI_BUT_ACTIVE_DEFAULT);
- UI_block_bounds_set_centered(block, 10);
+ UI_block_bounds_set_centered(block, 14 * U.dpi_fac);
return block;
}