From: Dana Jansens Date: Sat, 24 Aug 2002 20:43:58 +0000 (+0000) Subject: put !normal windows in the stacking client list as well as the normal client list X-Git-Tag: openbox-2_1_0~86 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=82bf5b555fe292d3699a679bbed17a7fd3047a54;p=mikachu%2Fopenbox.git put !normal windows in the stacking client list as well as the normal client list --- 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); }