diff -x '*~' -purNb a/src/widget/gtkmathview_common.cc b/src/widget/gtkmathview_common.cc --- a/src/widget/gtkmathview_common.cc 2007-08-17 12:02:35.000000000 +0200 +++ b/src/widget/gtkmathview_common.cc 2017-12-16 10:20:48.849839617 +0100 @@ -909,7 +909,7 @@ gtk_math_view_button_release_event(GtkWi math_view->select_state == SELECT_STATE_NO && fabs(math_view->button_press_x - event->x) <= CLICK_SPACE_RANGE && fabs(math_view->button_press_y - event->y) <= CLICK_SPACE_RANGE && - abs(math_view->button_press_time - event->time) <= CLICK_TIME_RANGE) + abs((int)(math_view->button_press_time - event->time)) <= CLICK_TIME_RANGE) { // the mouse should have not moved more than one pixel in each direction // and the time elapsed from the press event should be no more than 250ms @@ -969,7 +969,7 @@ gtk_math_view_motion_notify_event(GtkWid (math_view->select_state == SELECT_STATE_YES || fabs(math_view->button_press_x - x) > CLICK_SPACE_RANGE || fabs(math_view->button_press_y - y) > CLICK_SPACE_RANGE || - abs(math_view->button_press_time - event->time) > CLICK_TIME_RANGE)) + abs((int)(math_view->button_press_time - event->time)) > CLICK_TIME_RANGE)) { if (math_view->select_state == SELECT_STATE_NO) {