gpui: Add exit in tab title update loop (#40628)

Release Notes:

- N/A

---------

Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
This commit is contained in:
Xiaobo Liu
2025-10-19 16:52:16 +02:00
committed by GitHub
parent 5f13ce6d7d
commit 8f3f7232fb
+2 -1
View File
@@ -411,7 +411,8 @@ impl SystemWindowTabController {
for windows in controller.tab_groups.values_mut() {
for tab in windows.iter_mut() {
if tab.id == id {
tab.title = title.clone();
tab.title = title;
return;
}
}
}