summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaeyoung Kim <ty317.kim@samsung.com>2013-09-16 22:43:46 +0900
committerTaeyoung Kim <ty317.kim@samsung.com>2013-09-16 22:43:46 +0900
commitc08d7e54fa0079d15963257c7ddf6e6721ce4954 (patch)
treefe868e8a58275a1e0355537312a485ce1c454b40
parent4be1c31d9602ebdf34d42b8b322fd3dbfbf340be (diff)
downloadcrash-worker-sdk-c08d7e54fa0079d15963257c7ddf6e6721ce4954.tar.gz
crash-worker-sdk-c08d7e54fa0079d15963257c7ddf6e6721ce4954.tar.bz2
crash-worker-sdk-c08d7e54fa0079d15963257c7ddf6e6721ce4954.zip
Set button style on the crash popup
- Fix the issue that button focus is not moved even if tab key is pressed Signed-off-by: Taeyoung Kim <ty317.kim@samsung.com>
-rw-r--r--crash-popup/src/crash-popup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crash-popup/src/crash-popup.c b/crash-popup/src/crash-popup.c
index c917f63..c4ede7a 100644
--- a/crash-popup/src/crash-popup.c
+++ b/crash-popup/src/crash-popup.c
@@ -130,6 +130,7 @@ static void add_sorry_popup(struct appdata *ad)
bt1 = elm_button_add(pu);
snprintf(buf, sizeof(buf), "%s", _("IDS_COM_BUTTON_CLOSE"));
elm_object_text_set(bt1, buf);
+ elm_object_style_set(bt1, "popup");
elm_object_part_content_set(pu, "button1", bt1);
evas_object_smart_callback_add(bt1, "clicked", popup_close_cb, ad);
evas_object_show(pu);