Removed count for audio buffers in config GUI

This commit is contained in:
2018-12-10 00:45:56 -06:00
parent ad57be052e
commit 69cd540329
2 changed files with 8 additions and 8 deletions

View File

@@ -122,4 +122,11 @@ class mainWindow(wx.Frame):
wx.adv.AboutBox(info)
def remove_buffer(self, pos):
self.tb.DeletePage(pos)
self.tb.DeletePage(pos)
def notify(self, title, text):
try:
self.notification = wx.adv.NotificationMessage(title, text, parent=self)
except AttributeError:
self.notification = wx.NotificationMessage(title, text)
self.notification.Show()