Skip to content

Commit

Permalink
Fix missing app in statuswidget
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Jun 11, 2024
1 parent 8b9eaff commit f5fe49d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/gui/widget/StatusWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,9 @@ export class StatusWidget extends Widget {
detectSyncIcon.src = Icons.DETECT_SYNC
this.detectSync.appendChild(detectSyncIcon)
this.detectSync.onclick = () => {
this.manager.app.windowManager.openWindow(new SyncWindow(app))
this.manager.app.windowManager.openWindow(
new SyncWindow(this.manager.app)
)
}
this.detectSync.id = "detect-sync"
this.timingContainer.appendChild(this.detectSync)
Expand Down

0 comments on commit f5fe49d

Please sign in to comment.