From a831aff35643c25898d403df69b3fbcb3d682bc2 Mon Sep 17 00:00:00 2001 From: Jinkun Jang Date: Sat, 16 Mar 2013 01:03:42 +0900 Subject: [PATCH] merge with master --- src/bt-syspopup.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/bt-syspopup.c b/src/bt-syspopup.c index d152863..d12ad92 100644 --- a/src/bt-syspopup.c +++ b/src/bt-syspopup.c @@ -605,7 +605,7 @@ static void __bluetooth_draw_popup(struct bt_popup_appdata *ad, xwin = elm_win_xwindow_get(ad->popup); ecore_x_netwm_window_type_set(xwin, ECORE_X_WINDOW_TYPE_NOTIFICATION); utilx_set_system_notification_level(ecore_x_display_get(), xwin, - UTILX_NOTIFICATION_LEVEL_NORMAL); + UTILX_NOTIFICATION_LEVEL_HIGH); evas_object_show(ad->popup); evas_object_show(ad->win_main); @@ -628,6 +628,7 @@ static void __bluetooth_draw_input_view(struct bt_popup_appdata *ad, Evas_Object *check = NULL; Evas_Object *l_button = NULL; Evas_Object *r_button = NULL; + Ecore_X_Window xwin; if (ad == NULL || ad->win_main == NULL) { BT_ERR("Invalid parameter"); @@ -733,6 +734,11 @@ static void __bluetooth_draw_input_view(struct bt_popup_appdata *ad, elm_object_part_content_set(layout, "elm.swallow.entry", editfield); elm_object_part_content_set(layout, "elm.swallow.end", check); + xwin = elm_win_xwindow_get(ad->popup); + ecore_x_netwm_window_type_set(xwin, ECORE_X_WINDOW_TYPE_NOTIFICATION); + utilx_set_system_notification_level(ecore_x_display_get(), xwin, + UTILX_NOTIFICATION_LEVEL_HIGH); + evas_object_show(layout); evas_object_show(content); evas_object_show(passpopup); -- 2.7.4