From 260f40bff00f49162abd57ca9d3603c35da9c323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=CC=84vels=20Nadtoc=CC=8Cajevs?= <7645683+bruvzg@users.noreply.github.com> Date: Thu, 11 Jun 2026 23:19:27 +0300 Subject: [PATCH] [FileDialog] Sync "show hidden file" button state when toggled by shortcut. --- scene/gui/file_dialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 06c1f4444c..0d016a7583 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -2274,6 +2274,7 @@ void FileDialog::set_show_hidden_files(bool p_show) { if (show_hidden_files == p_show) { return; } + show_hidden->set_pressed_no_signal(p_show); show_hidden_files = p_show; invalidate(); }