diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-01 20:02:28 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-01 20:04:01 +0100 |
commit | 04cbfbe6b2745221c946fbd791b79ac933b859ec (patch) | |
tree | 3bd199b5e1587497bf4dd2d3b15d1bf4e29fe7ad | |
parent | 0f4e2cd40c498b2152576b448576e1ecf0ee8208 (diff) |
Make the Open Project Folder button more visible in the project manager
This closes https://github.com/godotengine/godot-proposals/issues/619.
-rw-r--r-- | editor/project_manager.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index e46b2711c1..a0eb923bc5 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -1375,11 +1375,10 @@ void ProjectList::create_project_item_control(int p_index) { vb->add_child(path_hb); Button *show = memnew(Button); - // Display a folder icon if the project directory can be opened, or a "broken file" icon if it can't + // Display a folder icon if the project directory can be opened, or a "broken file" icon if it can't. show->set_icon(get_theme_icon(!item.missing ? "Load" : "FileBroken", "EditorIcons")); - show->set_flat(true); if (!item.grayed) { - // Don't make the icon less prominent if the parent is already grayed out + // Don't make the icon less prominent if the parent is already grayed out. show->set_modulate(Color(1, 1, 1, 0.5)); } path_hb->add_child(show); |