From 0cb32058c8b75663c5f372b286aaf5dbfebea081 Mon Sep 17 00:00:00 2001 From: codereader Date: Fri, 5 Nov 2021 17:03:18 +0100 Subject: [PATCH] #5800: Fix sound property editor not pre-selecting the inherited value of snd_* keys of the entity selection --- radiant/ui/einspector/PropertyEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/ui/einspector/PropertyEditor.cpp b/radiant/ui/einspector/PropertyEditor.cpp index c63e9cadcb..5fdcd25639 100644 --- a/radiant/ui/einspector/PropertyEditor.cpp +++ b/radiant/ui/einspector/PropertyEditor.cpp @@ -44,7 +44,7 @@ wxPanel* PropertyEditor::getWidget() std::string PropertyEditor::getKeyValue(const std::string& key) { - return _entities.getSharedKeyValue(key, false); + return _entities.getSharedKeyValue(key, true); } void PropertyEditor::setKeyValue(const std::string& key, const std::string& value)