Back to TouchSelectorEntry for artist and albums
authorIvan Frade <ivan.frade@gmail.com>
Thu, 27 Aug 2009 20:14:34 +0000 (23:14 +0300)
committerIvan Frade <ivan.frade@gmail.com>
Thu, 27 Aug 2009 20:14:34 +0000 (23:14 +0300)
src/edit_panel.py

index 9e0bdf7..054ccfb 100755 (executable)
@@ -161,7 +161,7 @@ class MussorgskyEditPanel (hildon.StackableWindow):
         table.attach (self.title_entry, 1, 2, 0, 1)
 
         # Artist row
-        artist_selector = hildon.hildon_touch_selector_new_text ()
+        artist_selector = hildon.TouchSelectorEntry (text=True)
         for a in self.artists_list:
             artist_selector.append_text (a)
         self.artist_button = hildon.PickerButton (hildon.BUTTON_STYLE_NORMAL,
@@ -172,7 +172,7 @@ class MussorgskyEditPanel (hildon.StackableWindow):
 
 
         # Album row
-        album_selector = hildon.hildon_touch_selector_new_text ()
+        album_selector = hildon.TouchSelectorEntry (text=True)
         for a in self.albums_list:
             album_selector.append_text (a)
         self.album_button = hildon.PickerButton (hildon.BUTTON_STYLE_NORMAL,