all repos — openbox @ ae86775d0495dc906d1bdf1b9ed4fbfbbd378615

openbox fork - make it a bit more like ryudo

make lastActiveWindow more intelligent
Dana Jansens danakj@orodu.net
commit

ae86775d0495dc906d1bdf1b9ed4fbfbbd378615

parent

0adf54b0ca8f723dd25645d414b48a9a74e115d6

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

jump to
M util/epist/screen.ccutil/epist/screen.cc

@@ -421,7 +421,8 @@

// find a window if one exists WindowList::const_iterator it, end = _clients.end(); for (it = _clients.begin(); it != end; ++it) - if ((*it)->getScreen() == this) + if ((*it)->getScreen() == this && ! (*it)->iconic() && + ((*it)->desktop() == 0xffffffff || (*it)->desktop() == _active_desktop)) return *it; // no windows on this screen