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>2020-10-07 15:49:12 +0300
committerHans Goudey <h.goudey@me.com>2020-10-07 15:49:12 +0300
commit0fd06b535c166c4cb1997e8eed0c9aaccc684063 (patch)
tree5165532ccce8aadc3c40d44a8f0694b270524951 /source/blender/windowmanager/intern/wm_operators.c
parentf948459f12a3831c5a64c214ed8d7b5b3e773137 (diff)
UI: Use property split in various pop-up dialogs
The settings in these popups are not animateable, so also turn off property decorate. And also use better widths in order to fit the full text. Differential Revision: https://developer.blender.org/D9060
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operators.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index fda3cc49234..9d99e671369 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1623,7 +1623,7 @@ static int wm_debug_menu_exec(bContext *C, wmOperator *op)
static int wm_debug_menu_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSED(event))
{
RNA_int_set(op->ptr, "debug_value", G.debug_value);
- return WM_operator_props_dialog_popup(C, op, 180);
+ return WM_operator_props_dialog_popup(C, op, 250);
}
static void WM_OT_debug_menu(wmOperatorType *ot)