summaryrefslogtreecommitdiffstats
path: root/module/gui/LinkDock.py
diff options
context:
space:
mode:
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)