diff options
| -rw-r--r-- | util/epist/screen.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 48eaaaf2..39eb4895 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -279,19 +279,23 @@ void screen::handleKeypress(const XEvent &e) { return; case Action::moveWindowUp: - window->move(window->x(), window->y() - it->number()); + window->move(window->x(), window->y() - + (it->number() != 0 ? it->number(): 1)); return; case Action::moveWindowDown: - window->move(window->x(), window->y() + it->number()); + window->move(window->x(), window->y() + + (it->number() != 0 ? it->number(): 1)); return; case Action::moveWindowLeft: - window->move(window->x() - it->number(), window->y()); + window->move(window->x() - (it->number() != 0 ? it->number(): 1), + window->y()); return; case Action::moveWindowRight: - window->move(window->x() + it->number(), window->y()); + window->move(window->x() + (it->number() != 0 ? it->number(): 1), + window->y()); return; case Action::resizeWindowWidth: |
