From: Ivan Frade Date: Thu, 27 Aug 2009 20:14:34 +0000 (+0300) Subject: Back to TouchSelectorEntry for artist and albums X-Git-Tag: mussorgsky-0.2.1-1~7 X-Git-Url: https://vcs.maemo.org/git/?p=mussorgsky;a=commitdiff_plain;h=69ff1082cc276f70dabe590a2b07b4db96262af5 Back to TouchSelectorEntry for artist and albums --- diff --git a/src/edit_panel.py b/src/edit_panel.py index 9e0bdf7..054ccfb 100755 --- a/src/edit_panel.py +++ b/src/edit_panel.py @@ -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,