feat: things

This commit is contained in:
2025-05-23 13:33:10 +02:00
parent cbeed4003a
commit 33d8306f22
9 changed files with 59 additions and 43 deletions

View File

@@ -35,7 +35,11 @@ pub const AppState = struct {
}
pub fn deinit(self: *AppState) void {
self.tabPreCurrentItemsUnload.deinit();
self.currentTabChanged.deinit();
for (self.tabs.items) |*tab| {
tab.deinit();
}
self.tabs.deinit();
}