TerminalPanelView and PanelContentView held notificationStore as a plain `let` property. Since it's a reference type (class), SwiftUI's structural diffing saw no change when notifications were added and skipped re-evaluating the view body. Changed to @ObservedObject var so the views properly subscribe to the store's @Published changes. Closes #126 |
||
|---|---|---|
| .. | ||
| BrowserPanel.swift | ||
| BrowserPanelView.swift | ||
| CmuxWebView.swift | ||
| Panel.swift | ||
| PanelContentView.swift | ||
| TerminalPanel.swift | ||
| TerminalPanelView.swift | ||