aboutsummaryrefslogtreecommitdiffstats
path: root/src/custom.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/custom.c')
-rw-r--r--src/custom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/custom.c b/src/custom.c
index ce219c1..f83a87a 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -972,10 +972,10 @@ void custom_keys_config(void)
(col - WINCOL) / 2,
_("Press the key you want to assign to:"),
keys_get_label(selrow), 0);
- ch = wgetch(grabwin);
+ ch = keys_wgetch(grabwin);
/* First check if this key would be recognized by calcurse. */
- if (keys_str2int(keys_int2str(ch)) == -1) {
+ if (ch < 0) {
not_recognized = 1;
WARN_MSG(_("This key is not yet recognized by calcurse, "
"please choose another one."));