Browse Source

Large size for alerts pop-up-buttton.

pull/92/head
Abhishek 4 years ago
parent
commit
726ea0cb72
  1. 4
      Clocker/Panel/Notes Popover/NotesPopover.swift

4
Clocker/Panel/Notes Popover/NotesPopover.swift

@ -75,6 +75,10 @@ class NotesPopover: NSViewController {
setReminderCheckbox.setAccessibilityIdentifier("ReminderCheckbox") setReminderCheckbox.setAccessibilityIdentifier("ReminderCheckbox")
alertPopupButton.setAccessibilityIdentifier("RemindersAlertPopup") alertPopupButton.setAccessibilityIdentifier("RemindersAlertPopup")
reminderView.setAccessibilityIdentifier("RemindersView") reminderView.setAccessibilityIdentifier("RemindersView")
if #available(macOS 10.16, *) {
alertPopupButton.controlSize = .large
}
} }
override func viewWillAppear() { override func viewWillAppear() {

Loading…
Cancel
Save