From 6ca474192f35508438b6737df5c6688af19b888b Mon Sep 17 00:00:00 2001 From: David Kocik <kocikdav@gmail.com> 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 bf43b7645..559ee283f 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);