From 07fa8f5f23e05cd866f871b30370f4983bca329f Mon Sep 17 00:00:00 2001 From: hyunho Date: Thu, 2 Apr 2020 14:17:43 +0900 Subject: [PATCH] Remove viewer visibility Change-Id: Ib40280baeee0a92754ffe058ceceb21772ef735a Signed-off-by: hyunho --- watch-control/src/control.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/watch-control/src/control.c b/watch-control/src/control.c index 956799a1..503999fd 100644 --- a/watch-control/src/control.c +++ b/watch-control/src/control.c @@ -168,7 +168,7 @@ static void __manual_render_start(bool force_resume) if (force_resume) { _W("Force resume watchface"); - watch_manager_notify_resumed_status_of_viewer(); + watch_manager_notify_resumed_status_of_viewer(); } } @@ -910,12 +910,12 @@ static int __change_viewer_visibility(int visibility, bool update_cur_state) API int watch_manager_notify_resumed_status_of_viewer(void) { - return __change_viewer_visibility(AUL_SCREEN_STATUS_RESUME, true); + return watch_manager_resume(); } API int watch_manager_notify_paused_status_of_viewer(void) { - return __change_viewer_visibility(AUL_SCREEN_STATUS_PAUSE, true); + return watch_manager_pause(); } static int __change_visibility(int visibility) -- 2.34.1