Change the default value of showsTagField to true
The default value of showsTagField in macOS's NSSavePanel is true.
Therefore, in order to follow the standard behavior and not break
backwards-compatibility, let's change the default value of
showsTagField to true.
Reference:
1525589
-showstagfield?language=objc
This commit is contained in:
parent
b0487b7d84
commit
9423143211
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showsTagField == null) {
|
if (showsTagField == null) {
|
||||||
showsTagField = false
|
showsTagField = true
|
||||||
}
|
}
|
||||||
|
|
||||||
const wrappedCallback = typeof callback === 'function' ? function (success, result) {
|
const wrappedCallback = typeof callback === 'function' ? function (success, result) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue