removed duplicate function call

This commit is contained in:
Michael J. Baars
2023-02-21 13:28:15 +01:00
parent cad5771a66
commit 32bc7ce987

View File

@@ -995,10 +995,11 @@ gtk_cell_area_box_focus_changed (GtkCellArea *area,
GParamSpec *pspec,
GtkCellAreaBox *box)
{
GtkCellAreaBoxPrivate *priv = gtk_cell_area_box_get_instance_private (box);
GtkCellAreaBoxPrivate *priv = gtk_cell_area_box_get_instance_private (box);
GtkCellRenderer *focus_cell = gtk_cell_area_get_focus_cell (area);
if (gtk_cell_area_get_focus_cell (area))
priv->last_focus_cell = gtk_cell_area_get_focus_cell (area);
if (focus_cell)
priv->last_focus_cell = focus_cell;
}
/*************************************************************