Linear cycling wasn't affecting normal cycling order (Mark)

This commit is contained in:
markt 2006-06-28 20:58:53 +00:00
parent a6625f8ca5
commit aad6845c91
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,8 @@
(Format: Year/Month/Day)
Changes for 1.0rc2:
*06/06/28:
* Linear cycling wasn't affecting normal cycling order (Mark)
WorkspaceCmd.cc
* Little cleanup of dead functions (Mark)
Workspace.cc/hh
* Fixed more focus issues with linear cycling and tabbed windows (Mark)

View file

@ -55,8 +55,7 @@ void NextWindowCmd::execute() {
else {
// if stacked cycling, then set a watch for
// the release of exactly these modifiers
if (!fb->watchingScreen() &&
!(m_option & FocusControl::CYCLELINEAR))
if (!fb->watchingScreen())
Fluxbox::instance()->watchKeyRelease(*screen, mods);
screen->focusControl().nextFocus(m_option);
}
@ -78,8 +77,7 @@ void PrevWindowCmd::execute() {
else {
// if stacked cycling, then set a watch for
// the release of exactly these modifiers
if (!fb->watchingScreen()
&& !(m_option & FocusControl::CYCLELINEAR))
if (!fb->watchingScreen())
Fluxbox::instance()->watchKeyRelease(*screen, mods);
screen->focusControl().prevFocus(m_option);
}