Skip to content

Commit

Permalink
fix for cleanup configurable apply/save settings ui
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Dec 7, 2023
1 parent f7db4a6 commit ee73913
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class CleanupConfigurable(val project: Project) :
override fun apply() {
val list = cleanupPathsPanel.data

CleanupService.getInstance(project).settings.cleanupPaths = list
val service = CleanupService.getInstance(project)
service.settings.cleanupPaths = list
service.settingsUpdated()
}

override fun reset() {
Expand Down

0 comments on commit ee73913

Please sign in to comment.