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>2015-05-26 11:51:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-26 11:51:51 +0300
commit569a2035c7e450fd32c046768e045964a159a02b (patch)
treed22eb59da3b50cd0d4c62397df3c92d6a9ed03db /intern/ghost
parentde0c269c2803cfe94859f84673f5eb18eea310c0 (diff)
GHOST: flush event printer output
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_EventPrinter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_EventPrinter.cpp b/intern/ghost/intern/GHOST_EventPrinter.cpp
index 4b7be84ac81..f25f6637cb1 100644
--- a/intern/ghost/intern/GHOST_EventPrinter.cpp
+++ b/intern/ghost/intern/GHOST_EventPrinter.cpp
@@ -179,6 +179,9 @@ bool GHOST_EventPrinter::processEvent(GHOST_IEvent *event)
std::cout << "not found"; handled = false;
break;
}
+
+ std::cout.flush();
+
return handled;
}