FIX: remove export G-code link after slicing

Change-Id: I42d9c81ea06ec3f3f4d19776d11b998252307cc6
This commit is contained in:
tao.jin 2023-02-21 14:29:04 +08:00 committed by Lane.Wei
parent 3e3728f0a7
commit 72e06cbd8b

View file

@ -1264,7 +1264,7 @@ void NotificationManager::SlicingProgressNotification::set_status_text(const std
break;
case Slic3r::GUI::NotificationManager::SlicingProgressNotification::SlicingProgressState::SP_COMPLETED:
{
NotificationData data{ NotificationType::SlicingProgress, NotificationLevel::ProgressBarNotificationLevel, 0, _u8L("Slice ok."), m_is_fff ? _u8L("Export G-Code.") : _u8L("Export.") };
NotificationData data{ NotificationType::SlicingProgress, NotificationLevel::ProgressBarNotificationLevel, 0, _u8L("Slice ok.") };
update(data);
m_state = EState::Shown;
}