From a509181b45e39a4648d84eb537ba9cafff757a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20No=C3=ABl?= Date: Mon, 8 Dec 2025 16:15:26 +0100 Subject: [PATCH] Launcher: Release the second running indicator when needed As we are testing if it is null or not, it is better to actually clear it. --- src/AppSystem/Launcher.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AppSystem/Launcher.vala b/src/AppSystem/Launcher.vala index bb7e0c01..e2b02411 100644 --- a/src/AppSystem/Launcher.vala +++ b/src/AppSystem/Launcher.vala @@ -45,6 +45,7 @@ public class Dock.Launcher : BaseItem { running_box.append (second_running_indicator); } else if (!value && second_running_indicator != null) { running_box.remove (second_running_indicator); + second_running_indicator = null; } } }