feat: added track level list event tab

This commit is contained in:
Xiaohan-Tian
2026-05-09 17:00:04 -07:00
parent 490cd19f68
commit 48a51f12ac
7 changed files with 2287 additions and 1206 deletions
+2
View File
@@ -1676,6 +1676,7 @@ export const useProjectStore = create<ProjectState>((set, get) => {
if (core.undo()) {
// Use centralized refresh method
get().refreshProjectState();
get().bumpTrackAutomationRedrawVersion();
console.log('Undo completed');
}
},
@@ -1685,6 +1686,7 @@ export const useProjectStore = create<ProjectState>((set, get) => {
if (core.redo()) {
// Use centralized refresh method
get().refreshProjectState();
get().bumpTrackAutomationRedrawVersion();
console.log('Redo completed');
}
},