misc: update setting icon config on os below 10.11

This commit is contained in:
yicheng 2023-09-05 09:29:14 +08:00
parent 1d2abc3bb1
commit a8e1df6cf4
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,12 @@ class SettingTabViewController: NSTabViewController {
override func viewDidLoad() {
super.viewDidLoad()
tabStyle = .toolbar
if #unavailable(macOS 10.11) {
tabStyle = .segmentedControlOnTop
tabViewItems.forEach { item in
item.image = nil
}
}
NSApp.activate(ignoringOtherApps: true)
}