Fix Windows build which I just broke

This commit is contained in:
Albert Vaca 2018-11-07 17:13:18 +01:00
parent 06d4cb580e
commit a70c9aad64

View file

@ -138,6 +138,7 @@ bool WindowsRemoteInput::handlePacket(const NetworkPacket& np)
bool ctrl = np.get<bool>(QStringLiteral("ctrl"), false);
bool alt = np.get<bool>(QStringLiteral("alt"), false);
bool shift = np.get<bool>(QStringLiteral("shift"), false);
bool super = np.get<bool>(QStringLiteral("super"), false);
if (ctrl) {
input.ki.wVk = VK_LCONTROL;