aurum: Fix long click duration 87/261987/1
authorWoochanlee <wc0917.lee@samsung.com>
Fri, 30 Jul 2021 05:34:30 +0000 (14:34 +0900)
committerWoochanlee <wc0917.lee@samsung.com>
Fri, 30 Jul 2021 05:34:30 +0000 (14:34 +0900)
long click = 0.5sec down
0.5sec = 500 * 1000 = 500000 micro sec.

Change-Id: I1247ae865c8eb6fd66c5b766a74f1f67da24d29f

libaurum/inc/UiObject.h
org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h

index 4fcaf1ae264e36d79965229e2296f7a78b6a293d..4777831c44c9b5d6fdb8b57984bba323233fcbe1 100644 (file)
@@ -336,5 +336,5 @@ private:
     /**
      * @brief TBD
      */
-    static const unsigned int LOGNCLICK_INTERVAL = 50;
+    static const unsigned int LOGNCLICK_INTERVAL = 500;
 };
index 5b25ab9f635c4a6c929858bb145756169b95eaee..38e4a09e50972a6e5a9935a88457ec29109a33af 100644 (file)
@@ -17,5 +17,5 @@ public:
                      ::aurum::RspClick *response);
     ::grpc::Status execute() override;
 private:
-    const static unsigned int LOGNCLICK_INTERVAL = 50;
-};
\ No newline at end of file
+    const static unsigned int LOGNCLICK_INTERVAL = 500;
+};