fix screen switching for more than two screens

BUG: 264041
FIXED-IN: 4.9.4
(cherry picked from commit 217895fb13cf7498841a288a777f575cdd249efc)
icc-effect-5.14.5
Thomas Lübking 2012-11-23 02:15:58 +01:00
parent 3bad8ed12f
commit 939f04d260
1 changed files with 4 additions and 4 deletions

View File

@ -505,10 +505,10 @@ void Workspace::setCurrentScreen(int new_screen)
Client* ci = focus_chain[ currentDesktop()].at(i);
if (!ci->isShown(false) || !ci->isOnCurrentDesktop() || !ci->isOnCurrentActivity())
continue;
if (!ci->screen() == new_screen)
continue;
get_focus = ci;
break;
if (ci->screen() == new_screen) {
get_focus = ci;
break;
}
}
if (get_focus == NULL)
get_focus = findDesktop(true, currentDesktop());