Bugfix: Correctly handle unmap-notify events when resizing (Thanks Mirko)

next
Michael Stapelberg 2009-09-07 21:18:44 +02:00
parent 2ff2a6a315
commit e4813d009a
1 changed files with 6 additions and 1 deletions

View File

@ -342,8 +342,13 @@ void drag_pointer(xcb_connection_t *conn, Client *client, xcb_button_press_event
/* motion_notify events are saved for later */
FREE(last_motion_notify);
last_motion_notify = inside_event;
break;
case XCB_UNMAP_NOTIFY:
LOG("Unmap-notify, aborting\n");
xcb_event_handle(&evenths, inside_event);
goto done;
default:
LOG("Passing to original handler\n");
/* Use original handler */