Update to new python-hildon widgets tagged
authorIvan Frade <ivan.frade@gmail.com>
Sun, 16 Aug 2009 10:36:28 +0000 (13:36 +0300)
committerIvan Frade <ivan.frade@gmail.com>
Sun, 16 Aug 2009 10:36:28 +0000 (13:36 +0300)
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

index 88fcd28..b91890c 100755 (executable)
@@ -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,