summaryrefslogtreecommitdiff
path: root/table_unix.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-10-19 17:10:16 -0400
committerPietro Gagliardi <[email protected]>2014-10-19 17:10:16 -0400
commit95dc0a87b5113e55c453e5bc29e2eab039d527e5 (patch)
tree14471a8adbeb42bbed66b2c06246d7f36191ed40 /table_unix.c
parent6c20a3a8bfe773278d6fbcd182907a90e81e5e88 (diff)
Fixed Tables on GTK+ not updating properly. Should have done this ages ago, argh
Diffstat (limited to 'table_unix.c')
-rw-r--r--table_unix.c2
1 files changed, 1 insertions, 1 deletions
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)