From: John Darrington Date: Thu, 14 Sep 2017 06:58:05 +0000 (+0200) Subject: Set the "editable" properties of the sheets to TRUE X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=c972eebe3286130ba9af8b0520a35a42a8d5ef75 Set the "editable" properties of the sheets to TRUE --- diff --git a/src/ui/gui/psppire-data-sheet.c b/src/ui/gui/psppire-data-sheet.c index 86122d35f8..dc3cdfba63 100644 --- a/src/ui/gui/psppire-data-sheet.c +++ b/src/ui/gui/psppire-data-sheet.c @@ -351,6 +351,7 @@ psppire_data_sheet_new (void) g_object_new (PSPPIRE_TYPE_DATA_SHEET, "forward-conversion", psppire_data_store_value_to_string, "reverse-conversion", myreversefunc, + "editable", TRUE, NULL); return GTK_WIDGET (obj); diff --git a/src/ui/gui/psppire-variable-sheet.c b/src/ui/gui/psppire-variable-sheet.c index 2adef3f4d5..e37d435302 100644 --- a/src/ui/gui/psppire-variable-sheet.c +++ b/src/ui/gui/psppire-variable-sheet.c @@ -458,6 +458,7 @@ psppire_variable_sheet_new (void) "select-renderer-func", select_renderer_func, "hmodel", vsh, "forward-conversion", var_sheet_data_to_string, + "editable", TRUE, NULL); return GTK_WIDGET (obj);