all repos — openbox @ 4d70603f96efaa82556ad5874dbc75f2a563b095

openbox fork - make it a bit more like ryudo

revert a change for where new windows go in the list
Dana Jansens danakj@orodu.net
commit

4d70603f96efaa82556ad5874dbc75f2a563b095

parent

b04f5a85d5dd3660207318403cf9e620b48dcc76

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

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

@@ -472,14 +472,9 @@ break;

if (it == end) { // didn't already exist if (doAddWindow(rootclients[i])) { // cout << "Added window: 0x" << hex << rootclients[i] << dec << endl; - if (_stacked_cycling) { - // insert new clients after the active window - _clients.insert(insert_point, new XWindow(_epist, this, - rootclients[i])); - } else { - // insert new clients at the front of the list - _clients.push_front(new XWindow(_epist, this, rootclients[i])); - } + // insert new clients after the active window + _clients.insert(insert_point, new XWindow(_epist, this, + rootclients[i])); } } }