From 41af9c400c5d528052c305d36dc38fc7679e6312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Tue, 13 Oct 2015 16:26:45 +0200 Subject: [PATCH] [wayland] Allow resizing on ShellClients Needed to be able to put clients into quick tile mode. --- shell_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_client.cpp b/shell_client.cpp index bd954d2e2a..24f2ce98a5 100644 --- a/shell_client.cpp +++ b/shell_client.cpp @@ -353,7 +353,7 @@ bool ShellClient::isMovableAcrossScreens() const bool ShellClient::isResizable() const { - return false; + return true; } bool ShellClient::isShown(bool shaded_is_shown) const