summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhongkwon <hhh.kwon@samsung.com>2012-08-23 18:07:18 +0900
committerhongkwon <hhh.kwon@samsung.com>2012-08-23 18:07:18 +0900
commit3cb1e6ecb6294ce9ec7e9b70c2ff5896077cadc1 (patch)
tree401e821e715791fa2b2a54cd138088f1be5a1704
parenta5c1db1d96f38a8388dfc828b655f8fa9ec3a076 (diff)
downloadvolume-app-3cb1e6ecb6294ce9ec7e9b70c2ff5896077cadc1.tar.gz
volume-app-3cb1e6ecb6294ce9ec7e9b70c2ff5896077cadc1.tar.bz2
volume-app-3cb1e6ecb6294ce9ec7e9b70c2ff5896077cadc1.zip
Fix rotation issue(except after UG rotation issue)
-rwxr-xr-xsrc/volume.c11
1 files 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"));