[wayland] Internal ShellClients don't take input

We handle input for own windows in an own way.
This commit is contained in:
Martin Gräßlin 2015-05-21 10:39:10 +02:00
parent 36fa88893e
commit eec356494a

View file

@ -336,6 +336,9 @@ bool ShellClient::userCanSetNoBorder() const
bool ShellClient::wantsInput() const
{
if (isInternal()) {
return false;
}
return true;
}