Xi: finish XKB initialisation before copying the keymap.
This commit is contained in:
parent
96eafa3d4f
commit
9d5edebe96
|
@ -184,7 +184,10 @@ CopyKeyClass(DeviceIntPtr device, DeviceIntPtr master)
|
||||||
#ifdef XKB
|
#ifdef XKB
|
||||||
if (!noXkbExtension && dk->xkbInfo && dk->xkbInfo->desc) {
|
if (!noXkbExtension && dk->xkbInfo && dk->xkbInfo->desc) {
|
||||||
if (!mk->xkbInfo || !mk->xkbInfo->desc)
|
if (!mk->xkbInfo || !mk->xkbInfo->desc)
|
||||||
|
{
|
||||||
XkbInitDevice(master);
|
XkbInitDevice(master);
|
||||||
|
XkbFinishDeviceInit(master);
|
||||||
|
}
|
||||||
if (!XkbCopyKeymap(dk->xkbInfo->desc, mk->xkbInfo->desc, True))
|
if (!XkbCopyKeymap(dk->xkbInfo->desc, mk->xkbInfo->desc, True))
|
||||||
FatalError("Couldn't pivot keymap from device to core!\n");
|
FatalError("Couldn't pivot keymap from device to core!\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue