This removes a delay for input mapping.

It was causing more harm than good for users.  Anyone doing complex
expressions is already using the advanced editor for more control over
it.
This commit is contained in:
JMC47 2021-05-02 15:27:11 -04:00
parent ade9d6c954
commit 21113e5839

View File

@ -21,7 +21,7 @@
namespace MappingCommon
{
constexpr auto INPUT_DETECT_INITIAL_TIME = std::chrono::seconds(3);
constexpr auto INPUT_DETECT_CONFIRMATION_TIME = std::chrono::milliseconds(500);
constexpr auto INPUT_DETECT_CONFIRMATION_TIME = std::chrono::milliseconds(0);
constexpr auto INPUT_DETECT_MAXIMUM_TIME = std::chrono::seconds(5);
constexpr auto OUTPUT_TEST_TIME = std::chrono::seconds(2);