Invalidate the timer when the surface is destroyed

This commit is contained in:
Maciej Bartczak
2024-12-29 09:27:59 +01:00
committed by Jonathan Lopez
parent e5bbd14295
commit 34e5f55165

View File

@ -651,6 +651,7 @@ pub fn deinit(self: *Surface) void {
// and therefore the unfocused_overlay has been destroyed as well.
c.g_object_unref(self.im_context);
if (self.cursor) |cursor| c.g_object_unref(cursor);
if (self.update_title_timer) |timer| _ = c.g_source_remove(timer);
self.resize_overlay.deinit();
}