mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-10 03:30:16 +01:00
Fix boolean thinko that prevented working without a server layout
This commit is contained in:
parent
56fd927155
commit
ff2eae86b6
1 changed files with 1 additions and 1 deletions
|
|
@ -1809,7 +1809,7 @@ configImpliedLayout(serverLayoutPtr servlayoutp, XF86ConfScreenPtr conf_screen)
|
|||
indp = xnfalloc(sizeof(IDevRec));
|
||||
indp->identifier = NULL;
|
||||
servlayoutp->inputs = indp;
|
||||
if (!xf86Info.allowEmptyInput && checkCoreInputDevices(servlayoutp, TRUE))
|
||||
if (!xf86Info.allowEmptyInput && !checkCoreInputDevices(servlayoutp, TRUE))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue