diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-20 09:20:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-20 09:20:14 +0000 |
| commit | b94699afc339c469534521c44470aa6d19e5b4cc (patch) | |
| tree | 55e705a1ecf2ed51af7ceed723c21ff9ad93d60c /util/epist/screen.cc | |
| parent | 5bf463ea955bd7e27b1f04a1eefb28ec52309cb8 (diff) | |
add raising and lowering
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; |
