Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
fix(statusbar): left click was not registered
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammedKpln committed Feb 23, 2023
1 parent baa60a1 commit 8f4ff0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macos/Runner/StatusBarController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class StatusBarController {
statusBarButton.image?.size = NSSize(width: 13.0, height: 13.0)
statusBarButton.image?.isTemplate = true
statusBarButton.action = #selector(togglePopover(sender:))
statusBarButton.sendAction(on: [.rightMouseUp])
statusBarButton.sendAction(on: [.rightMouseUp, .leftMouseUp])
statusBarButton.target = self
}
}
Expand Down

0 comments on commit 8f4ff0d

Please sign in to comment.