PrefUI & PrefWindow // Attach build number to the window title.
This commit is contained in:
parent
cba27d10c2
commit
20bddbc0cb
|
@ -90,7 +90,7 @@ class CtlPrefUI: NSWindowController, NSWindowDelegate {
|
|||
window?.toolbarStyle = .preference
|
||||
}
|
||||
window?.toolbar = toolbar
|
||||
window?.title = preferencesTitleName
|
||||
window?.title = "\(preferencesTitleName) (\(IMEApp.appVersionLabel))"
|
||||
window?.titlebarAppearsTransparent = false
|
||||
use(view: Self.vwrGeneral, animate: false)
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ class CtlPrefWindow: NSWindowController, NSWindowDelegate {
|
|||
window?.toolbarStyle = .preference
|
||||
}
|
||||
window?.toolbar = toolbar
|
||||
window?.title = preferencesTitleName
|
||||
window?.title = "\(preferencesTitleName) (\(IMEApp.appVersionLabel))"
|
||||
window?.titlebarAppearsTransparent = false
|
||||
use(view: vwrGeneral, animate: false)
|
||||
|
||||
|
|
Loading…
Reference in New Issue