oops - old table use of a GimpSizeEntry

This commit is contained in:
Simon Budig 2018-05-05 17:41:24 +02:00 committed by Michael Natterer
parent ee08a2af5f
commit e35df2f5ce
1 changed files with 3 additions and 3 deletions

View File

@ -474,9 +474,9 @@ dialog (gint32 drawable_id)
spinbutton = gtk_spin_button_new (adj, 1, 0);
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
gimp_table_attach_aligned (GTK_TABLE (sizeentry), 0, 2,
gimp_grid_attach_aligned (GTK_GRID (sizeentry), 0, 2,
_("_Search depth:"), 0.0, 0.5,
spinbutton, 1, FALSE);
spinbutton, 1);
g_signal_connect (adj, "value-changed",
G_CALLBACK (gimp_int_adjustment_update),
&config.ntries);