summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/actions.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/actions.cc b/src/actions.cc
index 10edeec2..5a799a58 100644
--- a/src/actions.cc
+++ b/src/actions.cc
@@ -74,7 +74,7 @@ void Actions::buttonPressHandler(const XButtonEvent &e)
// run the PRESS python hook
WidgetBase *w = dynamic_cast<WidgetBase*>
(openbox->findHandler(e.window));
- assert(w); // everything should be a widget
+ if (!w) return;
// kill off the Button1Mask etc, only want the modifiers
unsigned int state = e.state & (ControlMask | ShiftMask | Mod1Mask |
@@ -113,7 +113,7 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e)
WidgetBase *w = dynamic_cast<WidgetBase*>
(openbox->findHandler(e.window));
- assert(w); // everything should be a widget
+ if (!w) return;
// not for the button we're watching?
if (_button != e.button) return;
@@ -236,7 +236,7 @@ void Actions::motionHandler(const XMotionEvent &e)
WidgetBase *w = dynamic_cast<WidgetBase*>
(openbox->findHandler(e.window));
- assert(w); // everything should be a widget
+ if (!w) return;
// run the MOTION python hook
// kill off the Button1Mask etc, only want the modifiers