Removed count for audio buffers in config GUI
This commit is contained in:
@@ -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()
|
Reference in New Issue
Block a user