diff options
Diffstat (limited to 'util/epist/screen.cc')
| -rw-r--r-- | util/epist/screen.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 7c4294a0..db812878 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -179,6 +179,14 @@ void screen::handleKeypress(const XEvent &e) { window->close(); return; + case Action::raise: + window->raise(); + return; + + case Action::lower: + window->lower(); + return; + case Action::toggleshade: window->shade(! window->shaded()); return; |
