Notify user of fully downloaded song with a system notification

This commit is contained in:
2018-02-28 17:44:18 -06:00
parent 182b783987
commit 0efab2a4ff
3 changed files with 7 additions and 3 deletions

View File

@@ -99,4 +99,8 @@ class mainWindow(wx.Frame):
saveFileDialog = wx.FileDialog(self, _(u"Save this file"), "", filename, _(u"Audio Files(*.mp3)|*.mp3"), wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
if saveFileDialog.ShowModal() == wx.ID_OK:
return saveFileDialog.GetPath()
saveFileDialog.Destroy()
saveFileDialog.Destroy()
def notify(self, title, text):
self.notification = wx.adv.NotificationMessage(title, text, parent=self)
self.notification.Show()