Browse Source

Update StatusContainerView.swift

master
Abhishek Banthia 2 years ago
parent
commit
b2da73d292
  1. 3
      Clocker/Preferences/Menu Bar/StatusContainerView.swift

3
Clocker/Preferences/Menu Bar/StatusContainerView.swift

@ -38,6 +38,7 @@ func compactWidth(for timezone: TimezoneData, with store: DataStore) -> Int {
// Test with Sat 12:46 AM // Test with Sat 12:46 AM
let bufferWidth: CGFloat = 9.5 let bufferWidth: CGFloat = 9.5
let upcomingEventBufferWidth: CGFloat = 32.5
protocol StatusItemViewConforming { protocol StatusItemViewConforming {
/// Mark that we need to refresh the text we're showing in the menubar /// Mark that we need to refresh the text we're showing in the menubar
@ -120,7 +121,7 @@ class StatusContainerView: NSView {
if showUpcomingEventView { if showUpcomingEventView {
let calculateMeetingHeaderSize = compactModeTimeFont.size(for: upcomingEvent?.event.title ?? "", width: 70, attributes: timeBasedAttributes) let calculateMeetingHeaderSize = compactModeTimeFont.size(for: upcomingEvent?.event.title ?? "", width: 70, attributes: timeBasedAttributes)
let calculatedMeetingSubtitleSize = compactModeTimeFont.size(for: upcomingEvent?.metadataForMeeting() ?? "", width: 55, attributes: timeBasedAttributes) let calculatedMeetingSubtitleSize = compactModeTimeFont.size(for: upcomingEvent?.metadataForMeeting() ?? "", width: 55, attributes: timeBasedAttributes)
compressedWidth += CGFloat(min(calculateMeetingHeaderSize.width, calculatedMeetingSubtitleSize.width) + bufferWidth + 32.5) compressedWidth += CGFloat(min(calculateMeetingHeaderSize.width, calculatedMeetingSubtitleSize.width) + bufferWidth + upcomingEventBufferWidth)
} }
let calculatedWidth = min(compressedWidth, let calculatedWidth = min(compressedWidth,

Loading…
Cancel
Save