all repos — fluxbox @ 304d3e4fd5d31c885f5f49ed934a8d507d5ecca8

custom fork of the fluxbox windowmanager

removed insert window after last focused, temporary fix
fluxgen fluxgen
commit

304d3e4fd5d31c885f5f49ed934a8d507d5ecca8

parent

66b1894bf264bb64748fc39824f97ef8bd9cb191

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

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

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Workspace.cc,v 1.20 2002/05/17 11:03:36 fluxgen Exp $ +// $Id: Workspace.cc,v 1.21 2002/06/02 22:57:52 fluxgen Exp $ // use GNU extensions #ifndef _GNU_SOURCE

@@ -93,6 +93,7 @@ //insert window after the currently focused window

FluxboxWindow *focused = Fluxbox::instance()->getFocusedWindow(); //if there isn't any window that's focused, just add it to the end of the list + /* if (focused == 0) { windowList.push_back(w); //Add client to clientmenu

@@ -113,8 +114,10 @@ m_clientmenu.insert(w->getTitle().c_str(), client_insertpoint);

} - - + */ + //add to list + m_clientmenu.insert(w->getTitle().c_str()); + windowList.push_back(w); //update menugraphics m_clientmenu.update();