Commit 79ccb3a8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB/window: implement close event

parent 06aedfd0
......@@ -392,6 +392,10 @@ static void ProcessEvent (vout_window_t *wnd, xcb_generic_event_t *ev)
vout_window_ReportSize (wnd, cne->width, cne->height);
break;
}
case XCB_DESTROY_NOTIFY:
vout_window_ReportClose (wnd);
break;
case XCB_MAPPING_NOTIFY:
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment