closes #1170056, Moving tab beyong last right tab causes malfunction
This commit is contained in:
parent
6e774e79e1
commit
a98bd2c128
1 changed files with 2 additions and 1 deletions
|
@ -939,7 +939,8 @@ void FluxboxWindow::moveClientLeft() {
|
|||
}
|
||||
|
||||
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()]);
|
||||
|
|
Loading…
Reference in a new issue