From 78da34f69ecfa6eed29d10c0a041d97e9516cedd Mon Sep 17 00:00:00 2001 From: David Kocik Date: Thu, 23 Sep 2021 15:01:19 +0200 Subject: [PATCH] Fix of hidden progress bar in progress indicator notification --- src/slic3r/GUI/NotificationManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/NotificationManager.cpp b/src/slic3r/GUI/NotificationManager.cpp index bf43b76454d..559ee283f79 100644 --- a/src/slic3r/GUI/NotificationManager.cpp +++ b/src/slic3r/GUI/NotificationManager.cpp @@ -1388,6 +1388,7 @@ bool NotificationManager::ProgressIndicatorNotification::update_state(bool pause // percentage was changed (and it called schedule_extra_frame), now update must know this needs render m_next_render = 0; m_progress_state = ProgressIndicatorState::PIS_PROGRESS_UPDATED; + m_current_fade_opacity = 1.0f; return true; } bool ret = ProgressBarNotification::update_state(paused, delta);