diff --git a/src/slic3r/GUI/Jobs/ArrangeJob.cpp b/src/slic3r/GUI/Jobs/ArrangeJob.cpp index fbcc1b2cd..309112e4d 100644 --- a/src/slic3r/GUI/Jobs/ArrangeJob.cpp +++ b/src/slic3r/GUI/Jobs/ArrangeJob.cpp @@ -229,8 +229,6 @@ void ArrangeJob::prepare_all() { } - // If the selection was empty arrange everything - //if (m_selected.empty()) m_selected.swap(m_unselected); if (m_selected.empty()) { if (!selected_is_locked) { m_plater->get_notification_manager()->push_notification(NotificationType::BBLPlateInfo, @@ -241,6 +239,14 @@ void ArrangeJob::prepare_all() { NotificationManager::NotificationLevel::WarningNotificationLevel, into_u8(_L("All the selected objects are on the locked plate,\nWe can not do auto-arrange on these objects."))); } } + if (!m_uncompatible_plates.empty()) { + std::string msg = "The following plates are skipped due to different arranging settings from global:\n"; + for (int i : m_uncompatible_plates) { + msg += "Plate " + std::to_string(i + 1) + "\n"; + } + m_plater->get_notification_manager()->push_notification(NotificationType::BBLPlateInfo, + NotificationManager::NotificationLevel::WarningNotificationLevel, into_u8(msg)); + } prepare_wipe_tower();