Fix Settings window

This commit is contained in:
1024jp 2023-09-28 19:03:11 +09:00
parent 999473b984
commit d1c1c3cc0c
2 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,10 @@ Change Log
4.6.2 (unreleased)
--------------------------
### Fixes
- Fix an issue that the Settings window disappeared when the application is inactive.
- [trivial] Fix an issue that unwanted debug log appeared in the Console.
4.6.1 (591)

View File

@ -38,6 +38,7 @@ final class SettingsWindowController: NSWindowController {
let window = SettingsWindow(contentViewController: viewController)
window.styleMask = [.closable, .titled]
window.hidesOnDeactivate = false
self.init(window: window)
}