Skip to content

Commit

Permalink
fix: do not show tray tooltip for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
shatyuka committed Nov 12, 2021
1 parent 732327f commit c70a35e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/ui/TrayManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ export default class TrayManager extends EventEmitter {
tray = new Tray(icon)
// tray.setPressedImage(inverseIcon)

tray.setToolTip('Motrix')
if (!this.macOS) {
tray.setToolTip('Motrix')
}
}

handleEvents () {
Expand Down

0 comments on commit c70a35e

Please sign in to comment.