mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 01:13:09 +00:00
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.
This commit is contained in:
parent
b5bf2e538a
commit
35db7c2ccc
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue