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
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-11 19:26:08 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-11 19:26:08 +0400
commitc287624f50f680c805d4ffdd3c927a224e0bb8e1 (patch)
tree3007a64de12c32e3b8e183d042f522239004ea4b /intern
parente91ddf02a8cda6182db095abfc0f0752058712e7 (diff)
Fix T38597: cycles status bar missing some updates.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/blender_session.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/blender_session.cpp b/intern/cycles/blender/blender_session.cpp
index 94d390cc330..1d3c49b519c 100644
--- a/intern/cycles/blender/blender_session.cpp
+++ b/intern/cycles/blender/blender_session.cpp
@@ -669,12 +669,12 @@ void BlenderSession::update_status_progress()
status += " | " + substatus;
if(status != last_status) {
+ b_engine.update_stats("", (timestatus + scene + status).c_str());
b_engine.update_memory_stats(mem_used, mem_peak);
last_status = status;
}
if(progress != last_progress) {
b_engine.update_progress(progress);
- b_engine.update_stats("", (timestatus + scene + status).c_str());
last_progress = progress;
}
}