diff options
author | Taeyoung Kim <ty317.kim@samsung.com> | 2013-09-16 22:43:46 +0900 |
---|---|---|
committer | Taeyoung Kim <ty317.kim@samsung.com> | 2013-09-16 22:43:46 +0900 |
commit | c08d7e54fa0079d15963257c7ddf6e6721ce4954 (patch) | |
tree | fe868e8a58275a1e0355537312a485ce1c454b40 | |
parent | 4be1c31d9602ebdf34d42b8b322fd3dbfbf340be (diff) | |
download | crash-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.c | 1 |
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); |