Skip to content

Commit

Permalink
File Icon Type setting reflects immediately CodeEditApp#1765
Browse files Browse the repository at this point in the history
  • Loading branch information
hkarmoush committed Jun 22, 2024
1 parent 4a6b234 commit 41b80d4
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ final class ProjectNavigatorViewController: NSViewController {

var workspace: WorkspaceDocument?

var iconColor: SettingsData.FileIconStyle = .color
var iconColor: SettingsData.FileIconStyle = .color {
willSet {
if newValue != iconColor {
outlineView.reloadData()
}
}
}

var fileExtensionsVisibility: SettingsData.FileExtensionsVisibility = .showAll
var shownFileExtensions: SettingsData.FileExtensions = .default
Expand Down

0 comments on commit 41b80d4

Please sign in to comment.