Skip to content

Commit

Permalink
Merge pull request godotengine#93743 from poga/93690-fix-quickopen-ic…
Browse files Browse the repository at this point in the history
…on-max-width

Set max width for icons in the quick open popup
  • Loading branch information
akien-mga committed Jun 29, 2024
2 parents 84f4042 + 77c3313 commit 37ea017
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions editor/editor_quick_open.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#include "core/os/keyboard.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"
#include "editor/themes/editor_scale.h"

Rect2i EditorQuickOpen::prev_rect = Rect2i();
Expand Down Expand Up @@ -119,10 +120,12 @@ void EditorQuickOpen::_update_search() {
sorter.sort(entries.ptrw(), entries.size());
}

const int class_icon_size = search_options->get_theme_constant(SNAME("class_icon_size"), EditorStringName(Editor));
const int entry_limit = MIN(entries.size(), 300);
for (int i = 0; i < entry_limit; i++) {
TreeItem *ti = search_options->create_item(root);
ti->set_text(0, entries[i].path);
ti->set_icon_max_width(0, class_icon_size);
ti->set_icon(0, *icons.lookup_ptr(entries[i].path.get_extension()));
}

Expand Down

0 comments on commit 37ea017

Please sign in to comment.