Skip to content

Commit

Permalink
features/rearrange-columns: close button needs to reload
Browse files Browse the repository at this point in the history
  • Loading branch information
Sören Kuklau committed Apr 6, 2024
1 parent 2b83894 commit efa6fee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,7 @@ class ArrangeColumnsViewItem: NSCollectionViewItem {
else { return }

closeColumn(columnViewController)

arrangeColumnsController?.reloadData()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ class ArrangeColumnsWindowController: NSWindowController, NSCollectionViewDelega

return true
}

func reloadData() {
collectionView.reloadData()
}

@IBAction func done(_ sender: Any) {
close()
Expand Down

0 comments on commit efa6fee

Please sign in to comment.