diff options
Diffstat (limited to 'e-util/e-table-utils.c')
-rw-r--r-- | e-util/e-table-utils.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/e-util/e-table-utils.c b/e-util/e-table-utils.c index 1bd16a928e..207da0c04c 100644 --- a/e-util/e-table-utils.c +++ b/e-util/e-table-utils.c @@ -128,10 +128,7 @@ et_col_spec_to_col (ETableColumnSpecification *col_spec, if (col) { col->search = search; - if (col_spec->sortable && !strcmp (col_spec->sortable, "false")) - col->sortable = FALSE; - else - col->sortable = TRUE; + col->sortable = col_spec->sortable; } g_free (title); } |