X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=util%2Fepist%2Fscreen.cc;h=5e56fc91e750ad4dccb75ea897b30c15dd8a8952;hb=4d70603f96efaa82556ad5874dbc75f2a563b095;hp=0fa5d89b9fa49943657059e91ed39bf02a4321cd;hpb=217488ee3e1a7246bdfadb6a56f83a4a50a7c180;p=chaz%2Fopenbox diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 0fa5d89b..5e56fc91 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -472,14 +472,9 @@ void screen::updateClientList() { 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])); } } }