From 69ff1082cc276f70dabe590a2b07b4db96262af5 Mon Sep 17 00:00:00 2001 From: Ivan Frade Date: Thu, 27 Aug 2009 23:14:34 +0300 Subject: [PATCH] Back to TouchSelectorEntry for artist and albums --- src/edit_panel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 1.7.9.5