aboutsummaryrefslogtreecommitdiff
path: root/rootston/desktop.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-12-03 14:13:27 -0500
committerGitHub <noreply@github.com>2017-12-03 14:13:27 -0500
commit3f70043d00135b17b6feb16e78484b1148ba11dd (patch)
tree7c5bd67d747a62d84939d96f018e1716d3156dfd /rootston/desktop.c
parentaa7efa1564f7e92318da9212c37bf3096361453c (diff)
parent344ca222db6b1811f983cabb80c3ba70e04fd31e (diff)
Merge pull request #458 from acrisci/refactor/wlr-decoration-modes
wrap server decoration modes
Diffstat (limited to 'rootston/desktop.c')
-rw-r--r--rootston/desktop.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index bb3af258..244f7c94 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -13,7 +13,6 @@
#include <wlr/types/wlr_xcursor_manager.h>
#include <wlr/types/wlr_xdg_shell_v6.h>
#include <wlr/util/log.h>
-#include <server-decoration-protocol.h>
#include "rootston/server.h"
#include "rootston/seat.h"
#include "rootston/xcursor.h"
@@ -468,7 +467,7 @@ struct roots_desktop *desktop_create(struct roots_server *server,
wlr_server_decoration_manager_create(server->wl_display);
wlr_server_decoration_manager_set_default_mode(
desktop->server_decoration_manager,
- ORG_KDE_KWIN_SERVER_DECORATION_MANAGER_MODE_CLIENT);
+ WLR_SERVER_DECORATION_MANAGER_MODE_CLIENT);
return desktop;
}