From 82bf5b555fe292d3699a679bbed17a7fd3047a54 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 24 Aug 2002 20:43:58 +0000 Subject: [PATCH] put !normal windows in the stacking client list as well as the normal client list --- src/Workspace.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Workspace.cc b/src/Workspace.cc index b943bc3a..b1a25b1a 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -463,7 +463,7 @@ void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const { BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin(); const BlackboxWindowList::const_reverse_iterator end = stackingList.rend(); for (; it != end; ++it) - if ((*it)->isNormal()) + if (! (*it)->isDesktop()) stack_order.push_back(*it); } -- 2.39.2