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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-09-15 15:48:59 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-09-15 15:48:59 +0400
commit8a25c33fca7f63ccaaaaddfdfcc9537ef0e3222d (patch)
tree9dcaa0a71c9463db5044be28abead2fde85733ee /source/creator
parent90bd472ef2b9438a71a84980c1311b40a12b81ec (diff)
Apply patch [#23809] Blender.exe -W support
by Dalai Felinto/Nathan Letwory This basically implements -W support for Blender.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index aa970f8f48b..4066d16186b 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -412,16 +412,13 @@ static int prefsize(int argc, char **argv, void *data)
static int with_borders(int argc, char **argv, void *data)
{
- /* with borders XXX OLD CRUFT!*/
-
+ WM_setinitialstate_normal();
return 0;
}
static int without_borders(int argc, char **argv, void *data)
{
- /* borderless, win + linux XXX OLD CRUFT */
- /* XXX, fixme mein, borderless on OSX */
-
+ WM_setinitialstate_fullscreen();
return 0;
}