Skip to content

Commit

Permalink
#5800: Fix sound property editor not pre-selecting the inherited valu…
Browse files Browse the repository at this point in the history
…e of snd_* keys of the entity selection
  • Loading branch information
codereader committed Nov 5, 2021
1 parent e7d7ebc commit 0cb3205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiant/ui/einspector/PropertyEditor.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit 0cb3205

Please sign in to comment.