Skip to content

Commit

Permalink
Fix: set max_width for icons in the quick open popup
Browse files Browse the repository at this point in the history
Co-authored-by: Tomek <[email protected]>
  • Loading branch information
poga and KoBeWi committed Jun 29, 2024
1 parent 25de53e commit 77c3313
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 77c3313

Please sign in to comment.