mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Merge pull request #92943 from anniryynanen/less-file-dialogs
Fix native file dialogs being shown on `set_visible(false)`
This commit is contained in:
commit
7128667959
@ -99,7 +99,9 @@ void FileDialog::set_visible(bool p_visible) {
|
||||
#endif
|
||||
|
||||
if (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_NATIVE_DIALOG_FILE) && (use_native_dialog || OS::get_singleton()->is_sandboxed())) {
|
||||
_native_popup();
|
||||
if (p_visible) {
|
||||
_native_popup();
|
||||
}
|
||||
} else {
|
||||
ConfirmationDialog::set_visible(p_visible);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user