From 658a28a25785fa94e6d7cf65903287fee07b7c1d Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 3 Sep 2015 18:19:38 +0200 Subject: [PATCH] support OnScreenDisplay from wayland --- shell_client.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell_client.cpp b/shell_client.cpp index 0b81a72a46..2eba9ebece 100644 --- a/shell_client.cpp +++ b/shell_client.cpp @@ -648,6 +648,9 @@ void ShellClient::installPlasmaShellSurface(PlasmaShellSurfaceInterface *surface case PlasmaShellSurfaceInterface::Role::Panel: type = NET::Dock; break; + case PlasmaShellSurfaceInterface::Role::OnScreenDisplay: + type = NET::OnScreenDisplay; + break; case PlasmaShellSurfaceInterface::Role::Normal: default: type = NET::Normal;