You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fixes clipping English text when gamma control is forced.
- Fixes clipping view in Displays with Chinese text.
- Set relevant options to disabled when keyboard control is disabled.
- Added Command+Q shortcut in menu when it is in standard text mode (not icon mode).
- Gearshape icon is used for preferences + stands a little bit apart to help user focus.
- Make preferences more spacious + more room for verbose languages
- Fixed dutch version clipping issues
- Added beta channel update backend
@@ -234,10 +234,12 @@ class MenuHandler: NSMenu, NSMenuDelegate {
234
234
updateIcon.bezelStyle =.regularSquare
235
235
updateIcon.isBordered =false
236
236
updateIcon.setButtonType(.momentaryChange)
237
-
updateIcon.image =NSImage(systemSymbolName:"arrow.triangle.2.circlepath.circle", accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
238
-
updateIcon.alternateImage =NSImage(systemSymbolName:"arrow.triangle.2.circlepath.circle.fill", accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
updateIcon.image =NSImage(systemSymbolName: symbolName, accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
239
+
updateIcon.alternateImage =NSImage(systemSymbolName: symbolName +".fill", accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
@@ -267,7 +270,7 @@ class MenuHandler: NSMenu, NSMenuDelegate {
267
270
letupdateItem=NSMenuItem(title:NSLocalizedString("Check for updates...", comment:"Shown in menu"), action: #selector(app.updaterController.checkForUpdates(_:)), keyEquivalent:"")
268
271
updateItem.target = app.updaterController
269
272
self.insertItem(updateItem, at:self.items.count)
270
-
self.insertItem(withTitle:NSLocalizedString("Quit", comment:"Shown in menu"), action: #selector(app.quitClicked), keyEquivalent:"", at:self.items.count)
273
+
self.insertItem(withTitle:NSLocalizedString("Quit", comment:"Shown in menu"), action: #selector(app.quitClicked), keyEquivalent:"q", at:self.items.count)
0 commit comments