forked from AuroraMiddleware/gtk
Implement process_updates_recurse for GdkOffscreenWindow
Makes offscreen windows work again.
This commit is contained in:
parent
03f7e26d26
commit
48b6b939d3
@ -698,6 +698,13 @@ gdk_offscreen_window_set_boolean (GdkWindow *window,
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
gdk_offscreen_window_process_updates_recurse (GdkWindow *window,
|
||||
cairo_region_t *region)
|
||||
{
|
||||
_gdk_window_process_updates_recurse (window, region);
|
||||
}
|
||||
|
||||
static void
|
||||
gdk_offscreen_window_class_init (GdkOffscreenWindowClass *klass)
|
||||
{
|
||||
@ -779,7 +786,7 @@ gdk_offscreen_window_class_init (GdkOffscreenWindowClass *klass)
|
||||
impl_class->destroy_notify = NULL;
|
||||
impl_class->register_dnd = NULL;
|
||||
impl_class->drag_begin = NULL;
|
||||
impl_class->process_updates_recurse = NULL;
|
||||
impl_class->process_updates_recurse = gdk_offscreen_window_process_updates_recurse;
|
||||
impl_class->sync_rendering = NULL;
|
||||
impl_class->simulate_key = NULL;
|
||||
impl_class->simulate_button = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user