From c54022ea4f0e6fd5994776b71b5c0c5e1d560b41 Mon Sep 17 00:00:00 2001 From: Wootak Jung Date: Fri, 8 Nov 2024 13:21:18 +0900 Subject: [PATCH] Fix popup scale down issue in Fhub Change-Id: I9b31902e64ed3c2fcd5162d0a54213867434ada9 Signed-off-by: Wootak Jung --- src/bt-syspopup-m.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bt-syspopup-m.c b/src/bt-syspopup-m.c index 912b987..087c41a 100644 --- a/src/bt-syspopup-m.c +++ b/src/bt-syspopup-m.c @@ -1355,6 +1355,8 @@ static void __bluetooth_draw_popup(struct bt_popup_appdata *ad, ad->popup = elm_popup_add(ad->layout); if (!TIZEN_FEATURE_FHUB_REFERENCE) elm_popup_align_set(ad->popup, ELM_NOTIFY_ALIGN_FILL, 1.0); + else + elm_object_scale_set(ad->popup, 0.8); /*set window level to HIGH*/ __bluetooth_set_win_level(ad->win_main); -- 2.34.1