From eec356494a6e5133e1ce6130728ba50805eb171d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 21 May 2015 10:39:10 +0200 Subject: [PATCH] [wayland] Internal ShellClients don't take input We handle input for own windows in an own way. --- shell_client.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell_client.cpp b/shell_client.cpp index 80f23f8f29..0344d8ac5a 100644 --- a/shell_client.cpp +++ b/shell_client.cpp @@ -336,6 +336,9 @@ bool ShellClient::userCanSetNoBorder() const bool ShellClient::wantsInput() const { + if (isInternal()) { + return false; + } return true; }