aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Options.c
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2017-11-19 01:11:05 +0100
committerUlrich Sibiller <uli42@gmx.de>2017-11-23 15:22:27 +0100
commit8fd25cf83c057e9d865b672eb3d42e2d362eabd7 (patch)
treeaed11ec731218f67dd34195c25a379713ac251d7 /nx-X11/programs/Xserver/hw/nxagent/Options.c
parent4b71309c3e727bf1770e8150546060a450246f24 (diff)
downloadnx-libs-8fd25cf83c057e9d865b672eb3d42e2d362eabd7.tar.gz
nx-libs-8fd25cf83c057e9d865b672eb3d42e2d362eabd7.tar.bz2
nx-libs-8fd25cf83c057e9d865b672eb3d42e2d362eabd7.zip
add option keyconv=(auto|on|off)
Adds a new option called "keyconv" to control keycode conversion. Before commit 2f2ade61a8823bad012737b2b388dcc168cccbbf keycode conversion was activated if the client was Linux and client side rules and/or model was "evdev". The only (and undocumented) way to disable that was providing a value different from "linux" for the "client" option (which had no other effect). The mentioned commit removed the dependency on Linux and so there was no way anymore to disable keycode conversion.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Options.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Options.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Options.c b/nx-X11/programs/Xserver/hw/nxagent/Options.c
index 978f3ab95..3464fdb10 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Options.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Options.c
@@ -168,6 +168,8 @@ void nxagentInitOptions()
nxagentOptions.SleepTime = DEFAULT_SLEEP_TIME;
nxagentOptions.ReconnectTolerance = DEFAULT_TOLERANCE;
+
+ nxagentOptions.KeycodeConversion = DEFAULT_KEYCODE_CONVERSION;
}
/*
@@ -193,6 +195,8 @@ void nxagentResetOptions()
nxagentOptions.WMBorderWidth = -1;
nxagentOptions.WMTitleHeight = -1;
+
+ nxagentOptions.KeycodeConversion = DEFAULT_KEYCODE_CONVERSION;
}
void nxagentSaveOptions()