Fixes #3486, gtk3: progress bar remaining blue after processing is annoying

This commit is contained in:
heckflosse
2016-10-30 12:52:30 +01:00
parent e4e474ca8a
commit 3ae608d5ca

View File

@@ -1044,7 +1044,7 @@ void EditorPanel::refreshProcessingState (bool inProcessingP)
}
s->str = "PROGRESSBAR_PROCESSING";
s->val = 0.0;
s->val = 1.0;
} else {
// Set proc params of thumbnail. It saves it into the cache and updates the file browser.
if (ipc && openThm && tpc->getChangedState()) {
@@ -1066,7 +1066,7 @@ void EditorPanel::refreshProcessingState (bool inProcessingP)
// Set progress bar "done"
s->str = "PROGRESSBAR_READY";
s->val = 1.0;
s->val = 0.0;
#ifdef WIN32