revert a change for where new windows go in the list
authorDana Jansens <danakj@orodu.net>
Tue, 27 Aug 2002 08:23:49 +0000 (08:23 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 27 Aug 2002 08:23:49 +0000 (08:23 +0000)
util/epist/screen.cc

index 0fa5d89..5e56fc9 100644 (file)
@@ -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]));
       }
     }
   }