Skip to content

Commit

Permalink
nit-picking
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanzhong committed Jan 9, 2024
1 parent 768d03f commit ba3ba7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public extension NSBezierPath {
let target = points.advanced(by: 2).pointee

path.curve(
to: points.advanced(by: 2).pointee,
to: target,
controlPoint1: cp1,
controlPoint2: cp2
)
Expand Down
2 changes: 1 addition & 1 deletion LunarBarMac/Sources/Main/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private extension AppDelegate {
return false
}

guard Date.timeIntervalSinceReferenceDate - popoverClosedTime > 0.05 else {
guard Date.timeIntervalSinceReferenceDate - popoverClosedTime > 0.1 else {
// The click was to close the popover
return false
}
Expand Down
2 changes: 1 addition & 1 deletion LunarBarMac/Sources/Main/AppMainVC+Menu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ private extension AppMainVC {

if let color = $0.color {
item.image = .with(
cellColor: $0.color,
cellColor: color,
borderColor: Colors.darkGray,
size: CGSize(width: 12, height: 12),
cornerRadius: 2
Expand Down

0 comments on commit ba3ba7b

Please sign in to comment.