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>2009-05-30 11:26:45 +0400
committerMatt Ebb <matt@mke3.net>2009-05-30 11:26:45 +0400
commitc41f8ea2ad9d2ec951cc978e44839460cd8f1f3a (patch)
tree5ba640905b5c1a8452e5618fd0c3416f2513f5cc /source/blender/windowmanager/intern/wm.c
parent829fb38ac31d1ebac7f92e80f9ac43d7300a0d11 (diff)
* fix for resetting window size on builtin b.blend startup.
I think this should work ok for now, but would really appreciate someone who knows the windowmanager code well to take a look at it :)
Diffstat (limited to 'source/blender/windowmanager/intern/wm.c')
-rw-r--r--source/blender/windowmanager/intern/wm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/windowmanager/intern/wm.c b/source/blender/windowmanager/intern/wm.c
index c7c23632161..37fdc9fa2c5 100644
--- a/source/blender/windowmanager/intern/wm.c
+++ b/source/blender/windowmanager/intern/wm.c
@@ -136,12 +136,12 @@ void wm_clear_default_size(bContext *C)
if(wm==NULL) return;
if(wm->windows.first==NULL) return;
- win = wm->windows.first;
- win->sizex = 0;
- win->sizey = 0;
- win->posx = 0;
- win->posy = 0;
- win->windowstate= GHOST_kWindowStateMaximized;
+ for(win= wm->windows.first; win; win= win->next) {
+ win->sizex = 0;
+ win->sizey = 0;
+ win->posx = 0;
+ win->posy = 0;
+ }
}