Fix default key for .noDocumentOnLaunchOption (f#1525)

This commit is contained in:
1024jp 2023-09-27 21:45:27 +09:00
parent 4d33d02913
commit def4323e7a
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Change Log
### Fixes
- Fix an issue that the result of Find All did not update.
- Fix an issue that the change of the option “When nothing else is open” in the General settings was not applied.
- [non-AppStore ver.] Fix the layout of the General settings.

View File

@ -30,7 +30,7 @@ extension DefaultKeys {
// General
static let quitAlwaysKeepsWindows = DefaultKey<Bool>("NSQuitAlwaysKeepsWindows")
static let noDocumentOnLaunchOption = RawRepresentableDefaultKey<NoDocumentOnLaunchOption>("NoDocumentOnLaunchOption")
static let noDocumentOnLaunchOption = RawRepresentableDefaultKey<NoDocumentOnLaunchOption>("noDocumentOnLaunchOption")
static let enablesAutosaveInPlace = DefaultKey<Bool>("enablesAutosaveInPlace")
static let documentConflictOption = RawRepresentableDefaultKey<DocumentConflictOption>("documentConflictOption")
static let suppressesInconsistentLineEndingAlert = DefaultKey<Bool>("suppressesInconsistentLineEndingAlert")