minor bug fix in NextWindow and PrevWindow Cmd
fluxgen fluxgen
1 files changed,
5 insertions(+),
4 deletions(-)
jump to
M
src/WorkspaceCmd.cc
→
src/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); } }