all repos — fluxbox @ e3edff5bc82b84bd65aa18137610ff5ff68ae658

custom fork of the fluxbox windowmanager

minor bug fix in NextWindow and PrevWindow Cmd
fluxgen fluxgen
commit

e3edff5bc82b84bd65aa18137610ff5ff68ae658

parent

7293dd64f67e8371796add46cecfb0d8ab111757

1 files changed, 5 insertions(+), 4 deletions(-)

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

@@ -20,7 +20,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: WorkspaceCmd.cc,v 1.5 2003/09/20 10:46:01 grubert Exp $ +// $Id: WorkspaceCmd.cc,v 1.6 2003/10/14 00:21:16 fluxgen Exp $ #include "WorkspaceCmd.hh"

@@ -51,8 +51,8 @@ if (!fb->watchingScreen() && !(m_option & BScreen::CYCLELINEAR))

Fluxbox::instance()->watchKeyRelease(*screen, mods); screen->nextFocus(m_option); } - } - + } else + screen->nextFocus(m_option); } }

@@ -72,7 +72,8 @@ if (!fb->watchingScreen() && !(m_option & BScreen::CYCLELINEAR))

Fluxbox::instance()->watchKeyRelease(*screen, mods); screen->prevFocus(m_option); } - } + } else + screen->nextFocus(m_option); } }