From 35db7c2cccd9dd210dc5c163ae6a3ac7880b2d2d Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 11 Mar 2026 10:46:54 +0100 Subject: [PATCH] fix(servo-shell): pass app_id from LAUNCH_ACK to taskbar entry system-ui.html: LAUNCH_ACK handler now passes msg.app_id to ensureTaskbarEntry so the taskbar label shows the app name immediately on launch, matching the behaviour of RUNNING_APPS. --- infra/shell/system-ui.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/shell/system-ui.html b/infra/shell/system-ui.html index 4093ef0..2db6657 100644 --- a/infra/shell/system-ui.html +++ b/infra/shell/system-ui.html @@ -212,7 +212,7 @@ ensureTaskbarEntry(s.session_id, s.app_id); }); } else if (msg.type === 'LAUNCH_ACK') { - ensureTaskbarEntry(msg.session_id, null); + ensureTaskbarEntry(msg.session_id, msg.app_id || null); } }