From f847c5e8bc724765f2138f68f4ef9ea3cafbcfd0 Mon Sep 17 00:00:00 2001 From: tom Date: Thu, 6 Mar 2014 11:36:13 +0100 Subject: [PATCH] fixes --- yubicoauthenticator/ui_systray.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yubicoauthenticator/ui_systray.py b/yubicoauthenticator/ui_systray.py index 4c277f56..43e431a1 100644 --- a/yubicoauthenticator/ui_systray.py +++ b/yubicoauthenticator/ui_systray.py @@ -20,6 +20,7 @@ import signal import ui_main as gl import yubico_authenticator as yc +from __init__ import __version__ as version from PySide import QtCore from PySide import QtGui @@ -124,6 +125,8 @@ class SystemTrayIcon(QtGui.QSystemTrayIcon): else: #time.sleep(0.5) self.myapp = Window() + self.myapp.setWindowTitle("Authenticator V. (%s)" % version) + self.myapp.setWindowIcon(QtGui.QIcon(os.path.join(basedir, YUBICO_ICON))) self.myapp.show() self.myapp.activateWindow() self.myapp.raise_()