diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-08-27 08:23:49 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-08-27 08:23:49 +0000 |
| commit | 4d70603f96efaa82556ad5874dbc75f2a563b095 (patch) | |
| tree | d4208f1d4372ff8e9bc171afb3703f369eb85db5 /util | |
| parent | b04f5a85d5dd3660207318403cf9e620b48dcc76 (diff) | |
revert a change for where new windows go in the list
Diffstat (limited to 'util')
| -rw-r--r-- | util/epist/screen.cc | 11 |
1 files changed, 3 insertions, 8 deletions
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])); } } } |
