From 0e0fddc076a40728181e14249c0d021e42844aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sat, 8 Apr 2023 11:30:25 +0200 Subject: [PATCH] Add-on: Change 'No Cluster' to 'All' In the 'Cluster' drop-down, change the label and tooltip of the 'No Cluster' option. The functionality is still the same, it causes the job to be submitted without cluster assigned. The wording now reflect Flamenco's behaviour better, instead of describing this technical aspect. Old: "No Cluster", "No cluster assigned, any worker can handle this job" New: "All", "No specific cluster assigned, any worker can handle this job" --- addon/flamenco/worker_clusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/flamenco/worker_clusters.py b/addon/flamenco/worker_clusters.py index d8222850..ecb4219d 100644 --- a/addon/flamenco/worker_clusters.py +++ b/addon/flamenco/worker_clusters.py @@ -42,7 +42,7 @@ def _get_enum_items(self, context): prefs = preferences.get(context) _enum_items = [ - ("-", "No Cluster", "No cluster assigned, any worker can handle this job"), + ("-", "All", "No specific cluster assigned, any worker can handle this job"), ] _enum_items.extend( (cluster.id, cluster.name, cluster.description)