From 7a40bdfb3f073a94bcd513204747ca61d6643d99 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 7 Jun 2018 22:30:43 -0400 Subject: [PATCH] Amazingly, it worked the first time! Just a quick logic error here. --- unix/table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/table.c b/unix/table.c index fe347e4e..2e85fbd8 100644 --- a/unix/table.c +++ b/unix/table.c @@ -64,7 +64,7 @@ static void setEditable(uiTableModel *m, GtkTreeIter *iter, int modelColumn, Gtk editable = g_value_get_int(&value) != 0; g_value_unset(&value); } - g_object_set(r, "editable", editable, NULL); + g_object_set(r, prop, editable, NULL); } static void applyBackgroundColor(uiTable *t, GtkTreeModel *m, GtkTreeIter *iter, GtkCellRenderer *r)