Fixed Tables on GTK+ not updating properly. Should have done this ages ago, argh

This commit is contained in:
Pietro Gagliardi 2014-10-19 17:10:16 -04:00
parent 6c20a3a8bf
commit 95dc0a87b5
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ void tableUpdate(goTableModel *t, gint old, gint new)
for (i = 0; i < nUpdate; i++) {
path = gtk_tree_path_new_from_indices(i, -1);
iter.user_data = TO(i);
g_signal_emit_by_name(t, "row-updated", path, &iter);
g_signal_emit_by_name(t, "row-changed", path, &iter);
}
// finally, remove deleted items
if (old > new)