Erase updatedItemsInfo type from multiple-showing notifications list.

This commit is contained in:
David Kocik 2021-08-24 17:31:34 +02:00
parent e65dc37401
commit 1c72351ba0

View File

@ -538,7 +538,7 @@ private:
// Timestamp of last rendering
int64_t m_last_render { 0LL };
// Notification types that can be shown multiple types at once (compared by text)
const std::vector<NotificationType> m_multiple_types = { NotificationType::CustomNotification, NotificationType::PlaterWarning, NotificationType::ProgressBar, NotificationType::PrintHostUpload, NotificationType::UpdatedItemsInfo };
const std::vector<NotificationType> m_multiple_types = { NotificationType::CustomNotification, NotificationType::PlaterWarning, NotificationType::ProgressBar, NotificationType::PrintHostUpload };
//prepared (basic) notifications
static const NotificationData basic_notifications[];
};