[Bf-blender-cvs] [57de9581e8f] master: UI: use active-default button flag for operator confirmation

Campbell Barton noreply at git.blender.org
Wed Mar 27 15:00:33 CET 2019


Commit: 57de9581e8fa359d11581e6acdfad764d14bd93c
Author: Campbell Barton
Date:   Thu Mar 28 00:54:13 2019 +1100
Branches: master
https://developer.blender.org/rB57de9581e8fa359d11581e6acdfad764d14bd93c

UI: use active-default button flag for operator confirmation

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

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 0b306406054..6e5f83eba47 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1149,6 +1149,7 @@ static uiBlock *wm_block_dialog_create(bContext *C, ARegion *ar, void *userData)
 		col_block = uiLayoutGetBlock(col);
 		/* Create OK button, the callback of which will execute op */
 		btn = uiDefBut(col_block, UI_BTYPE_BUT, 0, IFACE_("OK"), 0, -30, 0, UI_UNIT_Y, NULL, 0, 0, 0, 0, "");
+		UI_but_flag_enable(btn, UI_BUT_ACTIVE_DEFAULT);
 		UI_but_func_set(btn, dialog_exec_cb, data, col_block);
 	}



More information about the Bf-blender-cvs mailing list