Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 19:51:59 +0300
committerdigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 19:51:59 +0300
commit6df4d7677aa9dee037853b5e6c08b33718b8ab1a (patch)
tree0efc6029306a398e0badd205ca546c0081d3bfd3 /cura/TaskManagement
parent6f6c2df28a049607d90d0cea6a8f58f9f1fcc11c (diff)
Fix typo
Diffstat (limited to 'cura/TaskManagement')
-rw-r--r--cura/TaskManagement/OnExitCallbackManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py
index 7894931e9c..ce5fbdc948 100644
--- a/cura/TaskManagement/OnExitCallbackManager.py
+++ b/cura/TaskManagement/OnExitCallbackManager.py
@@ -10,7 +10,7 @@ if TYPE_CHECKING:
#
-# This class manages a all registered upon-exit checks that need to be perform when the application tries to exit.
+# This class manages all registered upon-exit checks that need to be perform when the application tries to exit.
# For example, to show a confirmation dialog when there is USB printing in progress, etc. All callbacks will be called
# in the order of when they got registered. If all callbacks "passes", that is, for example, if the user clicks "yes"
# on the exit confirmation dialog or nothing that's blocking the exit, then the application will quit after that.