mir: always emit a resize when creating windows

This commit is contained in:
William Hua 2017-03-21 11:25:36 -04:00
parent 87689b12fc
commit e69b4dc3da

View File

@ -571,6 +571,25 @@ generate_configure_event (GdkWindow *window,
send_event (window, get_pointer (window), event);
}
static void
synthesize_resize (GdkWindow *window)
{
GdkMirWindowImpl *impl = GDK_MIR_WINDOW_IMPL (window->impl);
MirWindowParameters params;
if (!impl->mir_window)
return;
mir_window_get_parameters (impl->mir_window, &params);
window->width = params.width;
window->height = params.height;
_gdk_window_update_size (window);
generate_configure_event (window, window->width, window->height);
}
static void
maybe_synthesize_resize (GdkWindow *window)
{
@ -626,7 +645,7 @@ ensure_mir_window_full (GdkWindow *window,
impl->pending_spec_update = FALSE;
impl->buffer_stream = mir_window_get_buffer_stream (impl->mir_window);
maybe_synthesize_resize (window);
synthesize_resize (window);
/* FIXME: Ignore some events until shown */
mir_window_set_event_handler (impl->mir_window, event_cb, window_ref);