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:
authorMatt Ebb <matt@mke3.net>2010-01-19 09:49:50 +0300
committerMatt Ebb <matt@mke3.net>2010-01-19 09:49:50 +0300
commit5b78e80fefcf9987077e3074c412615a37f58072 (patch)
tree3cabe0c0367164ec867d95cc50eef2737ce4df18 /source/blender/windowmanager
parent1d83239118091c691856777df38d9277b39e52cb (diff)
Fix [#20067] Blender 2.5.0 Alpha0 - Duplicating Window
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c
index 294f9204ab2..aaa24957715 100644
--- a/source/blender/windowmanager/intern/wm_window.c
+++ b/source/blender/windowmanager/intern/wm_window.c
@@ -487,6 +487,8 @@ int wm_window_duplicate_op(bContext *C, wmOperator *op)
wm_window_copy(C, CTX_wm_window(C));
WM_check(C);
+ WM_event_add_notifier(C, NC_WINDOW|NA_ADDED, NULL);
+
return OPERATOR_FINISHED;
}