summaryrefslogtreecommitdiffstats
path: root/module/gui/LinkDock.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-11-19 17:08:25 +0100
committerGravatar Jeix <devnull@localhost> 2010-11-19 17:08:25 +0100
commitf9b0874511f9fca0b7378c01449cc0c88c9d796e (patch)
tree1b1081f9fe169143f679aff6c30dae4b7fdaf529 /module/gui/LinkDock.py
parentmissing update event (diff)
downloadpyload-f9b0874511f9fca0b7378c01449cc0c88c9d796e.tar.xz
gui: add links to existing packages
Diffstat (limited to 'module/gui/LinkDock.py')
-rw-r--r--module/gui/LinkDock.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/module/gui/LinkDock.py b/module/gui/LinkDock.py
index 99429d04b..ac2d4aae5 100644
--- a/module/gui/LinkDock.py
+++ b/module/gui/LinkDock.py
@@ -42,11 +42,13 @@ class NewLinkWindow(QWidget):
self.setLayout(QVBoxLayout())
layout = self.layout()
+ explanationLabel = QLabel("Select a package and then click Add button.")
boxLabel = QLabel("Paste URLs here:")
self.box = QTextEdit()
save = QPushButton("Add")
+ layout.addWidget(explanationLabel)
layout.addWidget(boxLabel)
layout.addWidget(self.box)
layout.addWidget(save)