]> Dogcows Code - chaz/openbox/blobdiff - util/epist/screen.cc
add raising and lowering
[chaz/openbox] / util / epist / screen.cc
index 0d97b6143a301c661370c96a6ba4bb65e3c44cd4..db812878fdf250cee873b20f174ee12eaa1e2a1c 100644 (file)
@@ -175,6 +175,18 @@ void screen::handleKeypress(const XEvent &e) {
         XWindow *window = *_active;
 
         switch (it->type()) {
+        case Action::close:
+          window->close();
+          return;
+
+        case Action::raise:
+          window->raise();
+          return;
+
+        case Action::lower:
+          window->lower();
+          return;
+
         case Action::toggleshade:
           window->shade(! window->shaded());
           return;
This page took 0.021579 seconds and 4 git commands to generate.