all repos — openbox @ de6c40934f9a8752f3d7cb713a19d2a4d1287531

openbox fork - make it a bit more like ryudo

dont put non-normal windows in the stacking list. they dont show up in theclient list either.
Dana Jansens danakj@orodu.net
commit

de6c40934f9a8752f3d7cb713a19d2a4d1287531

parent

8db840cbd0837d3a3386105c776ca6f50e962365

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

jump to
M src/Workspace.ccsrc/Workspace.cc

@@ -408,7 +408,8 @@ 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) - stack_order.push_back(*it); + if (! (*it)->isNormal()) + stack_order.push_back(*it); }