From abbfa6578c2fdcc6fed8ee18d2b075a42af28697 Mon Sep 17 00:00:00 2001 From: Michael Danilov Date: Thu, 19 Aug 2021 03:16:30 +0200 Subject: [PATCH] Property browser: show values assigned to property folders in non-verbose mode as well (ticket 2479). --- src/GUI/property_list.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/property_list.cxx b/src/GUI/property_list.cxx index 3d96c2708..a25fa9edb 100644 --- a/src/GUI/property_list.cxx +++ b/src/GUI/property_list.cxx @@ -340,7 +340,7 @@ void PropertyList::updateTextForEntry(NodeData& data) } } - if (!children || (_verbose && node->hasValue())) { + if (node->hasValue()) { if (node->getType() == props::STRING || node->getType() == props::UNSPECIFIED) sanitize(value);