diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 16:42:07 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 16:42:07 +0900 |
commit | 8f01fbeeca1a6f3d10ea42b312191532a4a830d4 (patch) | |
tree | e7cc5f3cae52b4104854b0c555028fd351c7254a | |
parent | a51b5deb6515f32781822b3105d733f84e5717cd (diff) |
Change time out 10s to 3s
Change-Id: Iedb88adb78a712ce786d3e3cf49055666faed408
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r-- | src/app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.cpp b/src/app.cpp index a0e7130..d4c36f9 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -46,7 +46,7 @@ extern "C" namespace wm { -const unsigned kTimeOut = 10000000UL; /* 10s */ +static const unsigned kTimeOut = 3000000UL; /* 3s */ /* DrawingArea name used by "{layout}.{area}" */ const char kNameLayoutNormal[] = "normal"; |