Browse Source

Update AppearanceViewController.swift

pull/101/head
Abhishek Banthia 3 years ago
parent
commit
ac6a41f77c
  1. 14
      Clocker/Preferences/Appearance/AppearanceViewController.swift

14
Clocker/Preferences/Appearance/AppearanceViewController.swift

@ -62,6 +62,20 @@ class AppearanceViewController: ParentViewController {
"6 days",
"7 days",
])
theme.removeAllItems()
theme.addItems(withTitles: [
"Light",
"Dark",
"System",
"Solarized Light"
])
if #available(macOS 11.0, *) {
} else {
theme.font = NSFont.systemFont(ofSize: 13)
}
setup()

Loading…
Cancel
Save