From 9f172ad9a7fdb4c62839f4493cc85371d7a5c650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Mon, 18 Jun 2012 21:19:11 +0200 Subject: [PATCH] fix overzealous but autogroup by id breaking optimization BUG: 302084 FIXD-IN: 4.9 REVIEW: 105296 --- manage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage.cpp b/manage.cpp index 08a50a14eb..614fe50c34 100644 --- a/manage.cpp +++ b/manage.cpp @@ -330,7 +330,7 @@ bool Client::manage(Window w, bool isMapped) } } } - if (autogrouping && !tab_group && !isMapped && !session) { + if (!(tab_group || isMapped || session)) { // Attempt to automatically group similar windows Client* similar = findAutogroupCandidate(); if (similar && !similar->noBorder()) {