diff options
author | Jeix <devnull@localhost> | 2010-11-19 17:08:25 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-11-19 17:08:25 +0100 |
commit | f9b0874511f9fca0b7378c01449cc0c88c9d796e (patch) | |
tree | 1b1081f9fe169143f679aff6c30dae4b7fdaf529 /module/gui/LinkDock.py | |
parent | missing update event (diff) | |
download | pyload-f9b0874511f9fca0b7378c01449cc0c88c9d796e.tar.xz |
gui: add links to existing packages
Diffstat (limited to 'module/gui/LinkDock.py')
-rw-r--r-- | module/gui/LinkDock.py | 2 |
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) |