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:
authorCampbell Barton <ideasman42@gmail.com>2009-11-30 16:58:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-30 16:58:27 +0300
commitab4a141560a221860cfce00c878d8fd0cff47b9c (patch)
tree5be9aec7fb1ed3bf59d34e0a2dac893f2f9e2269 /source/creator
parent0f24af750680f7467433f1522d69a4fcc835fc93 (diff)
bugfix [#20083] Wrong position of splash screen on dualhead
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 3a9ee9859e8..f17cb95fe3f 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -890,8 +890,11 @@ int main(int argc, char **argv)
WM_exit(C);
}
- if(!G.background && !file_loaded)
+ if(!G.background && !file_loaded) {
+ /* careful, calls wm_window_process_events but seems safe
+ * since its called first in WM_main */
WM_init_splash(C);
+ }
WM_main(C);