mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
Fix "Favorite" button not being toggled when navigating to a faved folder manually
This commit is contained in:
parent
201cb8d7ed
commit
ec1c879746
@ -852,7 +852,7 @@ void EditorFileDialog::update_file_list() {
|
||||
fav_down->set_disabled(true);
|
||||
get_ok()->set_disabled(_is_open_should_be_disabled());
|
||||
for (int i = 0; i < favorites->get_item_count(); i++) {
|
||||
if (favorites->get_item_metadata(i) == cdir) {
|
||||
if (favorites->get_item_metadata(i) == cdir || favorites->get_item_metadata(i) == cdir + "/") {
|
||||
favorites->select(i);
|
||||
favorite->set_pressed(true);
|
||||
if (i > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user