summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/appcore-watch.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/appcore-watch.c b/src/appcore-watch.c
index 4e835f6..410233a 100755
--- a/src/appcore-watch.c
+++ b/src/appcore-watch.c
@@ -1218,7 +1218,10 @@ static Eina_Bool __show_cb(void *data, int type, void *event)
_D("show %d %d", (unsigned int)ev->win, (unsigned int)ev->data[0]);
- __do_app(WE_RESUME, &priv, NULL);
+ if (priv.viewer_visibility == AUL_SCREEN_STATUS_RESUME)
+ __do_app(WE_RESUME, &priv, NULL);
+ else
+ _D("viewer is not resumed, do not resume watch");
return ECORE_CALLBACK_RENEW;
}
@@ -1284,6 +1287,7 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv)
bundle *kb = NULL;
char *width_str = NULL;
char *height_str = NULL;
+ char *viewer_visibility_str = NULL;
int width = 360;
int height = 360;
@@ -1305,6 +1309,8 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv)
if (kb) {
bundle_get_str(kb, "WATCH_WIDTH", &width_str);
bundle_get_str(kb, "WATCH_HEIGHT", &height_str);
+ bundle_get_str(kb, "WATCH_VIEWER_VISIBILITY",
+ &viewer_visibility_str);
if (width_str)
width = atoi(width_str);
@@ -1312,6 +1318,9 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv)
if (height_str)
height = atoi(height_str);
+ if (viewer_visibility_str)
+ priv.viewer_visibility = atoi(viewer_visibility_str);
+
bundle_free(kb);
} else {
_E("failed to get launch argv");