PrefUI & PrefWindow // Disable multiple selection.
This commit is contained in:
parent
595304a0b8
commit
4b08607608
|
@ -71,6 +71,7 @@ struct VwrPrefPaneDictionary: View {
|
|||
Self.dlgOpenPath.showsResizeIndicator = true
|
||||
Self.dlgOpenPath.showsHiddenFiles = true
|
||||
Self.dlgOpenPath.canChooseFiles = false
|
||||
Self.dlgOpenPath.allowsMultipleSelection = false
|
||||
Self.dlgOpenPath.canChooseDirectories = true
|
||||
|
||||
let bolPreviousFolderValidity = LMMgr.checkIfSpecifiedUserDataFolderValid(
|
||||
|
|
|
@ -246,6 +246,7 @@ class CtlPrefWindow: NSWindowController {
|
|||
dlgOpenPath.showsHiddenFiles = true
|
||||
dlgOpenPath.canChooseFiles = false
|
||||
dlgOpenPath.canChooseDirectories = true
|
||||
dlgOpenPath.allowsMultipleSelection = false
|
||||
|
||||
let bolPreviousFolderValidity = LMMgr.checkIfSpecifiedUserDataFolderValid(
|
||||
PrefMgr.shared.userDataFolderSpecified.expandingTildeInPath)
|
||||
|
|
Loading…
Reference in New Issue