all repos — openbox @ 82bf5b555fe292d3699a679bbed17a7fd3047a54

openbox fork - make it a bit more like ryudo

put !normal windows in the stacking client list as well as the normal client list
Dana Jansens danakj@orodu.net
commit

82bf5b555fe292d3699a679bbed17a7fd3047a54

parent

b1da899b3264b93a40aa638bc5fb65831bdcc464

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/Workspace.ccsrc/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); }