From: Woochanlee Date: Fri, 30 Jul 2021 05:34:30 +0000 (+0900) Subject: aurum: Fix long click duration X-Git-Tag: submit/tizen/20210811.053854~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5bcf91cccaaaf4ade6c12289926e63dd86c8b51;p=platform%2Fcore%2Fuifw%2Faurum.git aurum: Fix long click duration long click = 0.5sec down 0.5sec = 500 * 1000 = 500000 micro sec. Change-Id: I1247ae865c8eb6fd66c5b766a74f1f67da24d29f --- 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; +};