input: reconfigure after setting up the libinput

Previously seat interface was keeping track of the repeat information,
but now it is taken care by KeyboardInterface, which is created only if
the setHasKeyboard is set to true.

So, since we are setting up various capabilities on seat in libinput,
re-parse configuration here, so that various information like key repeat
is notified to kwayland-server

BUG: 428039
This commit is contained in:
Bhushan Shah 2020-10-21 09:22:26 +05:30
parent f30ad51bfd
commit 733692f439

View file

@ -1941,7 +1941,6 @@ InputRedirection::InputRedirection(QObject *parent)
}
}
connect(kwinApp(), &Application::workspaceCreated, this, &InputRedirection::setupWorkspace);
reconfigure();
}
InputRedirection::~InputRedirection()
@ -2294,6 +2293,7 @@ void InputRedirection::setupLibInput()
}
setupTouchpadShortcuts();
reconfigure();
}
void InputRedirection::setupTouchpadShortcuts()