[Bf-blender-cvs] [a828818] master: Cleanup: More explicit parentheses

Sergey Sharybin noreply at git.blender.org
Tue Nov 15 16:01:33 CET 2016


Commit: a828818d59f0f8ea41900a12db703ba3fae075a7
Author: Sergey Sharybin
Date:   Tue Nov 15 16:01:21 2016 +0100
Branches: master
https://developer.blender.org/rBa828818d59f0f8ea41900a12db703ba3fae075a7

Cleanup: More explicit parentheses

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

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

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

diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index ad8a670..d2b0acd 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -727,12 +727,13 @@ static void wm_operator_finished(bContext *C, wmOperator *op, const bool repeat)
 	/* we don't want to do undo pushes for operators that are being
 	 * called from operators that already do an undo push. usually
 	 * this will happen for python operators that call C operators */
-	if (wm->op_undo_depth == 0)
+	if (wm->op_undo_depth == 0) {
 		if (op->type->flag & OPTYPE_UNDO)
 			ED_undo_push_op(C, op);
 		else if (op->type->flag & OPTYPE_UNDO_GROUPED)
 			ED_undo_grouped_push_op(C, op);
-	
+	}
+
 	if (repeat == 0) {
 		if (G.debug & G_DEBUG_WM) {
 			char *buf = WM_operator_pystring(C, op, false, true);
@@ -1856,11 +1857,12 @@ static int wm_handler_fileselect_do(bContext *C, ListBase *handlers, wmEventHand
 					wm->op_undo_depth--;
 
 				/* XXX check this carefully, CTX_wm_manager(C) == wm is a bit hackish */
-				if (CTX_wm_manager(C) == wm && wm->op_undo_depth == 0)
+				if (CTX_wm_manager(C) == wm && wm->op_undo_depth == 0) {
 					if (handler->op->type->flag & OPTYPE_UNDO)
 						ED_undo_push_op(C, handler->op);
 					else if (handler->op->type->flag & OPTYPE_UNDO_GROUPED)
 						ED_undo_grouped_push_op(C, handler->op);
+				}
 
 				if (handler->op->reports->list.first) {




More information about the Bf-blender-cvs mailing list