From 95dc0a87b5113e55c453e5bc29e2eab039d527e5 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 19 Oct 2014 17:10:16 -0400 Subject: [PATCH] Fixed Tables on GTK+ not updating properly. Should have done this ages ago, argh --- table_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table_unix.c b/table_unix.c index ed06bb6..77912c1 100644 --- a/table_unix.c +++ b/table_unix.c @@ -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)