[Bf-blender-cvs] [20bd253] master: Fix T45713: Numselect for confirm popup not working anymore

Julian Eisel noreply at git.blender.org
Fri Aug 7 14:41:54 CEST 2015


Commit: 20bd253809ff5e45270212d0afb2c68fd346944e
Author: Julian Eisel
Date:   Fri Aug 7 14:39:50 2015 +0200
Branches: master
https://developer.blender.org/rB20bd253809ff5e45270212d0afb2c68fd346944e

Fix T45713: Numselect for confirm popup not working anymore

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

M	source/blender/windowmanager/intern/wm_operators.c

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

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index cab9b02..19c6041 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1604,7 +1604,7 @@ static uiBlock *wm_block_dialog_create(bContext *C, ARegion *ar, void *userData)
 
 	/* intentionally don't use 'UI_BLOCK_MOVEMOUSE_QUIT', some dialogues have many items
 	 * where quitting by accident is very annoying */
-	UI_block_flag_enable(block, UI_BLOCK_KEEP_OPEN);
+	UI_block_flag_enable(block, UI_BLOCK_KEEP_OPEN | UI_BLOCK_NUMSELECT);
 
 	layout = UI_block_layout(block, UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, 0, 0, data->width, data->height, 0, style);




More information about the Bf-blender-cvs mailing list