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:
Diffstat (limited to 'source/creator/creator.c')
-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);