all repos — fluxbox @ 8db2d4f26eae2d608e864aabf6218ad461c4da6b

custom fork of the fluxbox windowmanager

little fix for previous patch to transient window raising
markt markt
commit

8db2d4f26eae2d608e864aabf6218ad461c4da6b

parent

590f32704af7a61dc99aa0c30da10fd842e2eeab

1 files changed, 4 insertions(+), 1 deletions(-)

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

@@ -1933,7 +1933,10 @@ }

// raise this window and every transient in it with this one last if (client->fbwindow()) { raiseFluxboxWindow(*client->fbwindow()); - client->fbwindow()->setCurrentClient(*client, false); + // doing this on startup messes up the focus order + if (!Fluxbox::instance()->isStartup()) + // activate the client so the transient won't get pushed back down + client->fbwindow()->setCurrentClient(*client, false); } }