diff options
| author | Rémi Verschelde | 2016-01-26 21:29:02 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2016-01-26 21:29:02 +0100 |
| commit | 9cafd47ed8c211107cd5b23646d3bc4c0aa4fc50 (patch) | |
| tree | 4bb6a0a7fafc60c72ad4589362f9157565bf251a /tools/editor/property_editor.cpp | |
| parent | 8e70f593460eac2bb9b4acf7affc02f87268f3cb (diff) | |
| parent | dd4cd3751bb26d796b8127782bf488f293dcbc70 (diff) | |
| download | godot-9cafd47ed8c211107cd5b23646d3bc4c0aa4fc50.tar.gz godot-9cafd47ed8c211107cd5b23646d3bc4c0aa4fc50.tar.zst godot-9cafd47ed8c211107cd5b23646d3bc4c0aa4fc50.zip | |
Merge pull request #1453 from adolson/remove-inspector-headings
remove column titles in property inspector
Diffstat (limited to 'tools/editor/property_editor.cpp')
| -rw-r--r-- | tools/editor/property_editor.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp index 4b1b93ea6..3dfc461bf 100644 --- a/tools/editor/property_editor.cpp +++ b/tools/editor/property_editor.cpp @@ -3701,9 +3701,7 @@ PropertyEditor::PropertyEditor() { capitalize_paths=true; autoclear=false; - tree->set_column_title(0,"Property"); - tree->set_column_title(1,"Value"); - tree->set_column_titles_visible(true); + tree->set_column_titles_visible(false); keying=false; read_only=false; |
