forked from AuroraMiddleware/gtk
window: Disconnect the ::compute-size handler
All the other signal handlers are connected in realize and disconnected in unrealize, but the ::compute-size handler was forgotten. This was notices in !5597.
This commit is contained in:
parent
6d2c5e51e0
commit
9efd8ef201
@ -4437,6 +4437,7 @@ gtk_window_unrealize (GtkWidget *widget)
|
||||
g_signal_handlers_disconnect_by_func (surface, surface_state_changed, widget);
|
||||
g_signal_handlers_disconnect_by_func (surface, surface_render, widget);
|
||||
g_signal_handlers_disconnect_by_func (surface, surface_event, widget);
|
||||
g_signal_handlers_disconnect_by_func (surface, toplevel_compute_size, widget);
|
||||
|
||||
frame_clock = gdk_surface_get_frame_clock (surface);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user