From b7bfa641ca52b852d885cb401a08fc904f5a5849 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Tue, 4 Mar 2008 18:38:18 +0000 Subject: [PATCH] I broke it for the case where -w and -W are not called. This should fix that up as well. Kent --- source/creator/creator.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/source/creator/creator.c b/source/creator/creator.c index 7ca658978f9..8562fc3d7d4 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -476,12 +476,8 @@ int main(int argc, char **argv) } } - /* XXX, fixme zr, with borders */ - /* there probably is a better way to do - * this, right now do as if blender was - * called with "-p 0 0 xres yres" -- sgefant - */ - setprefsize(stax, stay, sizx, sizy, 0); + if ( (G.windowstate == G_WINDOWSTATE_BORDER) || (G.windowstate == G_WINDOWSTATE_FULLSCREEN)) + setprefsize(stax, stay, sizx, sizy, 0); BPY_start_python(argc, argv);