From 4f6c107a7a8ec3cec3160d2c13683d2e73d59448 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Thu, 9 Jan 2020 16:05:41 -0300 Subject: [PATCH] Fixing unlock-delay property. --- src/core/properties/unsigned.c | 2 ++ 1 file changed, 2 insertions(+), 0 deletions(-) diff --git a/src/core/properties/unsigned.c b/src/core/properties/unsigned.c index 68ff558..cecdede 100644 --- a/src/core/properties/unsigned.c +++ b/src/core/properties/unsigned.c @@ -152,6 +152,8 @@ static unsigned int lib3270_get_host_type_number(const H3270 *hSession) #else .default_value = 350, #endif // UNLOCK_MS + .min = 0, + .max = 1000000, .label = N_("Unlock delay"), .description = N_( "The delay between the host unlocking the keyboard and the actual unlock" ), // Property description. .get = lib3270_get_unlock_delay, // Get value. -- libgit2 0.21.2