libaurum: change delay time between key down and key up 93/278493/1 submit/tizen/20220721.070719
authorHosang Kim <hosang12.kim@samsung.com>
Thu, 21 Jul 2022 06:33:09 +0000 (15:33 +0900)
committerHosang Kim <hosang12.kim@samsung.com>
Thu, 21 Jul 2022 06:33:09 +0000 (15:33 +0900)
Change-Id: I83afa617dd23f917fb57b21726173b33a7a55513

libaurum/inc/Impl/TizenDeviceImpl.h
libaurum/src/UiDevice.cc

index 242cb60..8852a45 100644 (file)
@@ -185,7 +185,7 @@ private:
     efl_util_inputgen_h mFakeKeyboardHandle;
     efl_util_inputgen_h mFakeWheelHandle;
     static const int INTV_CLICK = 5;
-    static const int INTV_SHORTSTROKE = 100;
+    static const int INTV_SHORTSTROKE = 10;
     static const int INTV_LONGSTROKE = 2000;
     static const int INTV_MINIMUM_DRAG_MS = 25;
     static const int INTV_MINIMUM_USLEEP = 1000;
@@ -204,4 +204,4 @@ private:
 
 }
 
-#endif
\ No newline at end of file
+#endif
index bafa6d7..15ab27f 100644 (file)
@@ -261,7 +261,6 @@ bool UiDevice::pressPower(KeyRequestType type)
 bool UiDevice::pressKeyCode(std::string keycode, KeyRequestType type)
 {
     bool result =  mDeviceImpl->pressKeyCode(keycode, type);
-    waitForIdle();
     return result;
 }