all repos — fluxbox @ a98bd2c128a5affe82dda6b21745dad051f66f92

custom fork of the fluxbox windowmanager

closes #1170056, Moving tab beyong last right tab causes malfunction
mathias mathias
commit

a98bd2c128a5affe82dda6b21745dad051f66f92

parent

6e774e79e1e747464f61e0d756c1fd07ed9ad777

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

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

@@ -939,7 +939,8 @@

} void FluxboxWindow::moveClientRight() { - if (m_clientlist.size() == 1) + if (m_clientlist.size() == 1 || + *m_clientlist.rbegin() == &winClient()) return; // move label button to the right frame().moveLabelButtonRight(*m_labelbuttons[&winClient()]);