diff --git a/Clocker/Panel/Notes Popover/NotesPopover.swift b/Clocker/Panel/Notes Popover/NotesPopover.swift index 4ba1af1..1e2fa38 100644 --- a/Clocker/Panel/Notes Popover/NotesPopover.swift +++ b/Clocker/Panel/Notes Popover/NotesPopover.swift @@ -76,9 +76,9 @@ class NotesPopover: NSViewController { alertPopupButton.setAccessibilityIdentifier("RemindersAlertPopup") reminderView.setAccessibilityIdentifier("RemindersView") -// if #available(OSX 11.0, *) { -// alertPopupButton.controlSize = .large -// } + if #available(OSX 11.0, *) { + alertPopupButton.controlSize = .large + } } override func viewWillAppear() { diff --git a/Clocker/Panel/UI/TimezoneCellView.swift b/Clocker/Panel/UI/TimezoneCellView.swift index 96013b4..92d2245 100644 --- a/Clocker/Panel/UI/TimezoneCellView.swift +++ b/Clocker/Panel/UI/TimezoneCellView.swift @@ -149,7 +149,7 @@ class TimezoneCellView: NSTableCellView { let timeWidth = timeString.size(withAttributes: [NSAttributedString.Key.font: customTimeFont]).width for constraint in time.constraints { - constraint.constant = constraint.identifier == "height" ? timeHeight : timeWidth + constraint.constant = constraint.identifier == "height" ? timeHeight : timeWidth } }