From b4a01b0945ce475f74b93c924c9f250241fa44c7 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 20:31:21 -0600 Subject: [PATCH] Mods --- cromulant/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cromulant/window.py b/cromulant/window.py index faf9130..0a47199 100644 --- a/cromulant/window.py +++ b/cromulant/window.py @@ -150,7 +150,7 @@ class Window: btn_terminate.middleClicked.connect(lambda: Ants.terminate_all()) Window.speed = QComboBox() - tooltip = "Change the speed of the loop\n" + tooltip = "Change the speed of the updates\n" tooltip += f"Fast: {Utils.get_seconds(Config.loop_delay_fast)}\n" tooltip += f"Normal: {Utils.get_seconds(Config.loop_delay_normal)}\n" tooltip += f"Slow: {Utils.get_seconds(Config.loop_delay_slow)}"