Implemented audio album removal. An album selector has been created

This commit is contained in:
2016-06-28 22:32:32 -05:00
parent dc88d68a6c
commit 42c8d9bbb7
5 changed files with 55 additions and 8 deletions

View File

@@ -2,8 +2,8 @@
import wx
class selectAlbum(wx.Dialog):
def __init__(self, albums):
super(selectAlbum, self).__init__(parent=None, title=_(u"Select the album where you will upload the photo"))
def __init__(self, title, albums):
super(selectAlbum, self).__init__(parent=None, title=title)
panel = wx.Panel(self)
self.lista = wx.ListBox(panel, -1, choices=albums)
self.lista.SetFocus()