src/gfx.c: don't g_object_unref(pixsurf)

it's cairo surface, it's handled properly a couple lines below:

cairo_surface_destroy (pixsurf);
This commit is contained in:
wdlkmpx 2021-06-16 22:30:19 -05:00
parent 0b7ed2539d
commit f5382a6aa3

View File

@ -332,9 +332,6 @@ void remake_board(gint numoldchilds, gboolean isnextvalid) {
cxs = gtkbTheme->emptycell.xsize;
cys = gtkbTheme->emptycell.ysize;
gtk_widget_set_size_request(mw_get_da(), rules_get_width() * cxs, rules_get_height() * cys);
if (pixsurf) {
g_object_unref(pixsurf);
}
if (pixsurf) {
cairo_surface_destroy (pixsurf);