diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-04 14:42:56 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-04 14:42:56 +0200 |
commit | d8f424dd6fcfd68a5e758a95347668d5a2939984 (patch) | |
tree | 7e7b79bfcd576b871be4110cae82583721728734 /module/gui | |
parent | megaupload fix 2 (diff) | |
download | pyload-d8f424dd6fcfd68a5e758a95347668d5a2939984.tar.xz |
hoster fixes, new tray icon
Diffstat (limited to 'module/gui')
-rw-r--r-- | module/gui/ConnectionManager.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/gui/ConnectionManager.py b/module/gui/ConnectionManager.py index 0bdeae282..d0050e69d 100644 --- a/module/gui/ConnectionManager.py +++ b/module/gui/ConnectionManager.py @@ -19,6 +19,8 @@ from PyQt4.QtCore import * from PyQt4.QtGui import * +from os.path import join + from uuid import uuid4 as uuid class ConnectionManager(QWidget): @@ -27,7 +29,10 @@ class ConnectionManager(QWidget): mainLayout = QHBoxLayout() buttonLayout = QVBoxLayout() - + + self.setWindowTitle(_("pyLoad ConnectionManager")) + self.setWindowIcon(QIcon(join(pypath, "icons","logo.png"))) + connList = QListWidget() new = QPushButton(_("New")) |