Skip to content

Commit

Permalink
Display tuples in brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Sep 1, 2015
1 parent f5821b5 commit 1a6dc7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ static QVariant valueColumnData(const Node& node, int role)
const auto& val = node.get<AddressSettings>().value;
if(val.val.canConvert<QVariantList>())
{
return val.val.toStringList().join(", ");
return "[ " + val.val.toStringList().join(", ") + " ]";
}

return val.val.toString();
Expand Down

0 comments on commit 1a6dc7b

Please sign in to comment.