From df8e9513247824a17b3932b3db80db3b2446706a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 31 Dec 2016 11:08:59 -0500 Subject: [PATCH] ColDescription: Added _modifiable --- src/columns/ColDescription.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/columns/ColDescription.cpp b/src/columns/ColDescription.cpp index 7dc20613e..2cd3d3745 100644 --- a/src/columns/ColDescription.cpp +++ b/src/columns/ColDescription.cpp @@ -40,16 +40,17 @@ extern Context context; //////////////////////////////////////////////////////////////////////////////// ColumnDescription::ColumnDescription () { - _name = "description"; - _style = "combined"; - _label = STRING_COLUMN_LABEL_DESC; + _name = "description"; + _style = "combined"; + _label = STRING_COLUMN_LABEL_DESC; + _modifiable = true; - _styles = {"combined", - "desc", - "oneline", - "truncated", - "count", - "truncated_count"}; + _styles = {"combined", + "desc", + "oneline", + "truncated", + "count", + "truncated_count"}; _dateformat = context.config.get ("dateformat.annotation"); if (_dateformat == "")