Evas_Object *scroller = NULL;
Evas_Object *focused_page = NULL;
layout_info_s *layout_info = NULL;
+ int ret = 0;
_D("Resume");
if (main_info.state == APP_STATE_RESUME) {
_home_visibility_vconf_set(EINA_TRUE);
}
+ _W("resume watch application viewer state");
+ ret = watch_manager_notify_resumed_status_of_viewer();
+ if (ret < 0)
+ _E("Failed to resume watch application viewer state, error code [%d]", ret);
+
apps_resume();
}
void app_pause(void *data)
{
_D("Paused");
+ int ret = 0;
if (main_info.state == APP_STATE_PAUSE) {
_E("paused already");
return;
/* DYNAMICBOX pause */
_W("clock/widget paused");
widget_viewer_evas_notify_paused_status_of_viewer();
+
+ _W("pause watch application viewer state");
+ ret = watch_manager_notify_paused_status_of_viewer();
+ if (ret < 0)
+ _E("Failed to pause watch application viewer state, error code [%d]", ret);
}