From 3ae608d5caea5de3106a705dca495bbfe9b7db25 Mon Sep 17 00:00:00 2001 From: heckflosse Date: Sun, 30 Oct 2016 12:52:30 +0100 Subject: [PATCH] Fixes #3486, gtk3: progress bar remaining blue after processing is annoying --- rtgui/editorpanel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index 32f8c1a18..9ae2630d5 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -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