From 5e4c8016e6b94642ad42163b34fcfdcf711be8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Mon, 9 Dec 2019 19:36:18 -0500 Subject: fix statusbar message disappears in message 'Downloading Video... Done!' --- hypervideo_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hypervideo_gui.py') 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()): -- cgit v1.2.3