From 451d49d7315f1a2156e3a8ff77d7931eb75137da Mon Sep 17 00:00:00 2001 From: Kai Huuhko Date: Tue, 15 Apr 2014 21:43:32 +0300 Subject: [PATCH] Examples: Fixed elm.popup duplicate function names --- examples/elementary/test_popup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/elementary/test_popup.py b/examples/elementary/test_popup.py index 1c7b232..7dfa4a3 100644 --- a/examples/elementary/test_popup.py +++ b/examples/elementary/test_popup.py @@ -46,7 +46,7 @@ def cb_popup_center_title_text_1button(li, item, win): popup.part_content_set("button1", bt) popup.show() -def cb_popup_center_title_text_1button(li, item, win): +def cb_popup_center_title_text_2button(li, item, win): popup = Popup(win, size_hint_weight=EXPAND_BOTH) popup.text = "This Popup has title area, content area and " \ "action area set, action area has one button Close" @@ -184,7 +184,7 @@ def popup_clicked(obj): li.item_append("popup-center-text + 1 button", None, None, cb_popup_center_title_text_1button, win) li.item_append("popup-center-title + text + 1 button", None, None, - cb_popup_center_title_text_1button, win) + cb_popup_center_title_text_2button, win) li.item_append("popup-center-title + text (block,clicked handling)", None, None, cb_popup_center_title_text_block_clicked_event, win) li.item_append("popup-bottom-title + text + 3 buttons", None, None,