Matej Cepl wrote:
>
> Then tell me, pray, how to get working Czech keyboard in LyX with well
> behaving X with localized keyboard? I have never managed to do that :-(
Patch the file src/kbsequence.C for LyX 1.1.6fix1 with this patch and
recompile it. It should work from then on.
--
Regards,
Roman
--- src/kbsequence.C.orig Sun Dec 17 07:09:34 2000
+++ src/kbsequence.C Wed May 9 00:53:49 2001
@@ -261,6 +261,9 @@
char kb_sequence::getiso() const
{
int const c = getsym();
+
+ if (c >= 0x1a1 && c <= 0x1ff) // ISO Latin 2 keysym
+ return static_cast<char>(c % 256);
if (c > 0xff)
return '\0';