change refresh time to milliseconds 98/283798/1
authorulgal-park <ulgal.park@samsung.com>
Thu, 20 Oct 2022 07:06:50 +0000 (16:06 +0900)
committerTizen AI <ai.tzn.sec@samsung.com>
Thu, 3 Nov 2022 05:44:38 +0000 (14:44 +0900)
Change-Id: I646ed3ac3618de7267fc873d50bfe66feea919fa

src/mmimgr/iu/VoiceTouchEngine.cpp
src/mmimgr/mmi-common.h
src/mmimgr/output_modality/mmi_output_modality.cpp

index 2931dd2..fb8f3c0 100644 (file)
@@ -199,7 +199,7 @@ static void __invoke_event_for_refreshing_window()
                return;
        }
 
-       ev->seconds = 1.0;
+       ev->msec = 0;
        ecore_event_add(MMI_EVENT_REFRESH_SCREEN_INFORM, ev, __refresh_screen_inform_event_free, nullptr);
 }
 
index 9c168f5..75505f5 100644 (file)
@@ -305,7 +305,7 @@ typedef struct
 
 typedef struct
 {
-       double seconds; // refresh timer seconds value
+       int msec; // refresh timer milliseconds value
 } mmi_event_refresh_screen_inform;
 
 
index d131cf3..3d847c4 100644 (file)
@@ -189,7 +189,7 @@ EXPORT_API int output_modality_voice_touch(mmi_output_modality_voice_touch modal
                return 0;
        }
 
-       ev->seconds = 1.0;
+       ev->msec = 2000;
        ecore_event_add(MMI_EVENT_REFRESH_SCREEN_INFORM, ev, __refresh_screen_inform_event_free, NULL);
 
        return ret;