all repos — openbox @ 544bc20a843455e66b344bd0b8b16c87ab355c09

openbox fork - make it a bit more like ryudo

rm debug prints
Dana Jansens danakj@orodu.net
commit

544bc20a843455e66b344bd0b8b16c87ab355c09

parent

43c1f2a8f84d8008155d6df8e2bcd35534c62893

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

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

@@ -1585,15 +1585,9 @@ Client *ret;

for (it = node->_transients.begin(); it != end; ++it) { if (*it == skip) continue; // circular? - printf("recursing\n"); if ((ret = searchModalTree(*it, skip))) return ret; // got one - printf("trying this window\n"); - if ((*it)->_modal) { - printf("found it\n"); - return *it; // got one - } + if ((*it)->_modal) return *it; // got one } - printf("found none\n"); return 0; }