misc: disable dashboard in macos 10.14 due to webkit support

This commit is contained in:
yicheng 2023-06-14 11:50:34 +08:00
parent dabbb5bb95
commit cf2008a265

View File

@ -98,6 +98,10 @@ class AppDelegate: NSObject, NSApplicationDelegate {
}
}
if #unavailable(macOS 10.15) {
// dashboard is not support in macOS 10.15 below
self.dashboardMenuItem.isHidden = true
}
setupStatusMenuItemData()
AppVersionUtil.showUpgradeAlert()
ICloudManager.shared.setup()