summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source/view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/view.c b/source/view.c
index fc47c838..263db655 100644
--- a/source/view.c
+++ b/source/view.c
@@ -1573,7 +1573,8 @@ static void rofi_view_mainloop_iter ( RofiViewState *state, xcb_generic_event_t
case XCB_MOTION_NOTIFY:
{
xcb_motion_notify_event_t *xme = (xcb_motion_notify_event_t *) ev;
- if ( xme->event_x >= state->scrollbar->widget.x && xme->event_x < ( state->scrollbar->widget.x + state->scrollbar->widget.w ) ) {
+ if ( state->scrollbar != NULL &&
+ xme->event_x >= state->scrollbar->widget.x && xme->event_x < ( state->scrollbar->widget.x + state->scrollbar->widget.w ) ) {
state->selected = scrollbar_clicked ( state->scrollbar, xme->event_y );
state->update = TRUE;
}