From 31f641371751b4857999283934016d572b878098 Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 4 Dec 2025 17:02:24 +0100 Subject: [PATCH] Fix wrong file thumbnails icon --- scene/gui/file_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index f011aef71b5..fe5c936974d 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -998,7 +998,7 @@ void FileDialog::update_file_list() { thumbnail = vicon; } if (thumbnail.is_null()) { - thumbnail = theme_cache.file; + thumbnail = theme_cache.file_thumbnail; } file_list->set_item_icon(-1, thumbnail); if (icon.is_valid()) {