fixed one

This commit is contained in:
Eric Lay 2023-12-09 11:58:23 -06:00
parent 4ba5e77347
commit 3a58e9a1fd
2 changed files with 3 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# Maintainer: Eric Lay <ericlaytm@gmail.com> # Maintainer: Eric Lay <ericlaytm@gmail.com>
pkgname=systrayupdater pkgname=systrayupdater
pkgver=r49.b4cad83 pkgver=r52.4ba5e77
pkgrel=1 pkgrel=1
pkgdesc="PyQt5 system tray applet notifier of available updates" pkgdesc="PyQt5 system tray applet notifier of available updates"
arch=('x86_64') arch=('any')
url="https://github.com/ericlay/$pkgname" url="https://github.com/ericlay/$pkgname"
license=('GPL3') license=('GPL3')
depends=('python' depends=('python'

View File

@ -117,6 +117,7 @@ quit.triggered.connect(app.quit)
# Create applet and place menu in it # Create applet and place menu in it
tray = QSystemTrayIcon() tray = QSystemTrayIcon()
tray.setIcon(icon) tray.setIcon(icon)
tray.setVisible(True)
tray.setContextMenu(menu) tray.setContextMenu(menu)
app.exec_() app.exec_()