all repos — fluxbox @ 926260e5c85326feec1681eda2b3561596f47556

custom fork of the fluxbox windowmanager

Fix crash when closing a window while cycling (Mark)
markt markt
commit

926260e5c85326feec1681eda2b3561596f47556

parent

7efed1a825d777c692cc7e80f7c355ba825ba802

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

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

@@ -365,9 +365,10 @@

m_focused_list.remove(&client); m_creation_order_list.remove(&client); - if (cyc == &client) + if (cyc == &client) { + m_cycling_window = m_creation_order_list.end(); stopCyclingFocus(); - + } } /**