diff --git a/src/commands/CmdTags.cpp b/src/commands/CmdTags.cpp index 4187a03dc..839974cc8 100644 --- a/src/commands/CmdTags.cpp +++ b/src/commands/CmdTags.cpp @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include @@ -92,10 +92,10 @@ int CmdTags::execute (std::string& output) if (unique.size ()) { // Render a list of tags names from the map. - ViewText view; + Table view; view.width (context.getWidth ()); - view.add (Column::factory ("string", STRING_COLUMN_LABEL_TAG)); - view.add (Column::factory ("string.right", STRING_COLUMN_LABEL_COUNT)); + view.add (STRING_COLUMN_LABEL_TAG); + view.add (STRING_COLUMN_LABEL_COUNT, false); Color bold; if (context.color ())