From dd8a7a29e19f4e304e2620aa1665dd6761a1370e Mon Sep 17 00:00:00 2001 From: emersion Date: Wed, 14 Mar 2018 00:01:28 +0100 Subject: [PATCH] rootston: don't center view if maximized --- rootston/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootston/desktop.c b/rootston/desktop.c index b1e6f874..e9a9425c 100644 --- a/rootston/desktop.c +++ b/rootston/desktop.c @@ -491,7 +491,7 @@ void view_initial_focus(struct roots_view *view) { void view_setup(struct roots_view *view) { view_initial_focus(view); - if (view->fullscreen_output == NULL) { + if (view->fullscreen_output == NULL && !view->maximized) { view_center(view); }