From 4e3d09a56a7dcdecf905a1b3f29dba685c45a9f5 Mon Sep 17 00:00:00 2001 From: Ivan Frade Date: Sun, 16 Aug 2009 13:36:28 +0300 Subject: [PATCH] Update to new python-hildon widgets hildon_touch_selector_entry_new_text doesnt exit anymore. Replacing it with hildon_touch_selector_new_text. Not sure it allows use typing. --- 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 88fcd28..b91890c 100755 --- a/src/edit_panel.py +++ b/src/edit_panel.py @@ -154,7 +154,7 @@ class MussorgskyEditPanel (hildon.StackableWindow): table.attach (self.title_entry, 1, 2, 0, 1) # Artist row - artist_selector = hildon.hildon_touch_selector_entry_new_text () + artist_selector = hildon.hildon_touch_selector_new_text () for a in self.artists_list: artist_selector.append_text (a) self.artist_button = hildon.PickerButton (hildon.BUTTON_STYLE_NORMAL, @@ -165,7 +165,7 @@ class MussorgskyEditPanel (hildon.StackableWindow): # Album row - album_selector = hildon.hildon_touch_selector_entry_new_text () + album_selector = hildon.hildon_touch_selector_new_text () for a in self.albums_list: album_selector.append_text (a) self.album_button = hildon.PickerButton (hildon.BUTTON_STYLE_NORMAL, -- 1.7.9.5