aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_gui.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-09 19:36:18 -0500
committerJesús <heckyel@hyperbola.info>2019-12-09 19:36:18 -0500
commit5e4c8016e6b94642ad42163b34fcfdcf711be8f8 (patch)
treedc37f9107c9b088d9878768fbd0803477dd9f153 /hypervideo_gui.py
parent3c771922cb76cb36b9293d35d70a84e332824a56 (diff)
downloadhypervideo-gui-5e4c8016e6b94642ad42163b34fcfdcf711be8f8.tar.lz
hypervideo-gui-5e4c8016e6b94642ad42163b34fcfdcf711be8f8.tar.xz
hypervideo-gui-5e4c8016e6b94642ad42163b34fcfdcf711be8f8.zip
fix statusbar message disappears in message 'Downloading Video... Done!'
Diffstat (limited to 'hypervideo_gui.py')
-rw-r--r--hypervideo_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py
index dfbb1ae..f6ff736 100644
--- a/hypervideo_gui.py
+++ b/hypervideo_gui.py
@@ -199,7 +199,7 @@ class App(QMainWindow):
with hypervideo.YoutubeDL(ydl_opts) as ydl:
ydl.download([self.urlEntryText.text()])
- self.statusBar().showMessage('Downloading Video... Done!')
+ self.statusBar().showMessage('Downloading Video... Done!', msecs=0)
# make sure a valid output directory was entered
if not os.path.isdir(self.outputEntryCombobox.currentText()):