Skip to content

Commit 559df6b

Browse files
authored
Merge pull request #1085 from shatyuka/macos_tray_tooltip
fix: do not show tray tooltip for macOS
2 parents 732327f + c70a35e commit 559df6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/ui/TrayManager.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ export default class TrayManager extends EventEmitter {
145145
tray = new Tray(icon)
146146
// tray.setPressedImage(inverseIcon)
147147

148-
tray.setToolTip('Motrix')
148+
if (!this.macOS) {
149+
tray.setToolTip('Motrix')
150+
}
149151
}
150152

151153
handleEvents () {

0 commit comments

Comments
 (0)