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:
authorTon Roosendaal <ton@blender.org>2008-12-17 18:51:32 +0300
committerTon Roosendaal <ton@blender.org>2008-12-17 18:51:32 +0300
commitd6b677ba428c0f09237f1dfcfb2508b296346613 (patch)
tree3f58319cc0110d7025f7e8ccacf2c231dc3884be /source/blender/windowmanager
parent07d63eb67943e6f9e93443fbbb903436c9b9503d (diff)
2.5
Small commit, too much fun to not do separately: - removed notifier restriction to go only to own window, so multiwindow setups redraw correctly. (when other windows show other scenes we have to handle still). - fixed cursor type outside of window (got stuck to area-move cursor).
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index 74f3fd33f29..5cc28ec45d8 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -130,11 +130,6 @@ void wm_event_do_notifiers(bContext *C)
C->window= win;
C->screen= win->screen; /* XXX context in notifiers? */
-
- if(note->window && note->window!=win)
- continue;
- if(win->screen==NULL)
- continue;
/* printf("notifier win %d screen %s\n", win->winid, win->screen->id.name+2); */
ED_screen_do_listen(win, note);