From ca942a15e8dd2333b94330b25a4d603b98b612c5 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 9 Nov 2021 14:45:40 +0100 Subject: [PATCH] Don't use infinite lifetimes lightly This is very annoying if switching profiles. This is not a critical message. The message should disappear after the default amount of time. Discovered while working on CURA-8584. --- cura/Settings/MachineManager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index b172d92d00..6d6c78cb1b 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -855,7 +855,6 @@ class MachineManager(QObject): caution_message = Message( catalog.i18nc("@info:message Followed by a list of settings.", "Settings have been changed to match the current availability of extruders:") + " [{settings_list}]".format(settings_list = ", ".join(add_user_changes)), - lifetime = 0, title = catalog.i18nc("@info:title", "Settings updated")) caution_message.show()