diff options
author | Jesús <heckyel@hyperbola.info> | 2019-12-09 19:36:18 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-12-09 19:36:18 -0500 |
commit | 5e4c8016e6b94642ad42163b34fcfdcf711be8f8 (patch) | |
tree | dc37f9107c9b088d9878768fbd0803477dd9f153 /hypervideo_gui.py | |
parent | 3c771922cb76cb36b9293d35d70a84e332824a56 (diff) | |
download | hypervideo-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.py | 2 |
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()): |