fix theme / add history

This commit is contained in:
2026-07-12 02:49:08 +02:00
parent 6587779a58
commit ae3d2dd302
15 changed files with 3025 additions and 362 deletions
@@ -114,17 +114,12 @@ class BarScreenViewModel extends ChangeNotifier {
await barTabService.closeTab(tab.id);
_selectedTabId = null;
await _reloadTabs();
}
Future<void> closeTab(String tabId) async {
await barTabService.closeTab(tabId);
if (_selectedTabId == tabId) {
_selectedTabId = null;
}
await _reloadTabs();
}