From 7a64426085551f14f0bdce69a320e5afc137b4c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 5 Jun 2015 19:51:42 +0200 Subject: [PATCH] Trigger updateMoveResize after keyboard move --- input.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/input.cpp b/input.cpp index b35728aac3..1cb05b071c 100644 --- a/input.cpp +++ b/input.cpp @@ -685,9 +685,8 @@ void InputRedirection::processKeyboardKey(uint32_t key, InputRedirection::Keyboa } if (workspace()) { if (Client *c = dynamic_cast(workspace()->getMovingClient())) { - // TODO: this does not yet fully support moving of the Client - // cursor events change the cursor and on Wayland pointer warping is not possible c->keyPressEvent(m_xkb->toQtKey(m_xkb->toKeysym(key))); + c->updateMoveResize(m_globalPointer); return; } }