From 3cb1e6ecb6294ce9ec7e9b70c2ff5896077cadc1 Mon Sep 17 00:00:00 2001 From: hongkwon Date: Thu, 23 Aug 2012 18:07:18 +0900 Subject: [PATCH] Fix rotation issue(except after UG rotation issue) --- src/volume.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/volume.c b/src/volume.c index 5cf6787..098b6a0 100755 --- a/src/volume.c +++ b/src/volume.c @@ -84,13 +84,10 @@ static int app_reset(bundle *b, void *data) } ad->flag_launching = EINA_TRUE; - if (syspopup_has_popup(b)) { - _D("has popup\n"); - _app_reset(b, data); - } else { - _D("has not popup\n"); - _app_reset(b, data); - } + if (syspopup_has_popup(b)) + syspopup_reset(b); + _app_reset(b, data); + /* appcore measure time example */ printf("from AUL to %s(): %d msec\n", __func__, appcore_measure_time_from("APP_START_TIME")); -- 2.7.4