From b5bcf91cccaaaf4ade6c12289926e63dd86c8b51 Mon Sep 17 00:00:00 2001 From: Woochanlee Date: Fri, 30 Jul 2021 14:34:30 +0900 Subject: [PATCH] aurum: Fix long click duration long click = 0.5sec down 0.5sec = 500 * 1000 = 500000 micro sec. Change-Id: I1247ae865c8eb6fd66c5b766a74f1f67da24d29f --- libaurum/inc/UiObject.h | 2 +- org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libaurum/inc/UiObject.h b/libaurum/inc/UiObject.h index 4fcaf1a..4777831 100644 --- a/libaurum/inc/UiObject.h +++ b/libaurum/inc/UiObject.h @@ -336,5 +336,5 @@ private: /** * @brief TBD */ - static const unsigned int LOGNCLICK_INTERVAL = 50; + static const unsigned int LOGNCLICK_INTERVAL = 500; }; diff --git a/org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h b/org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h index 5b25ab9..38e4a09 100644 --- a/org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h +++ b/org.tizen.aurum-bootstrap/inc/Commands/LongClickCommand.h @@ -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; +}; -- 2.34.1