summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-26 13:45:53 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-26 13:45:53 +0100
commit7d151c83811f8ac8873439826c16d88c83aba12f (patch)
tree6485bd8acc7a7b5a5843a4014b89c5e25bab7d4c
parent3fa6ec728522b541bb0f8b5e271207053c175bb2 (diff)
parent7118fb9cda6e79b7525a6f200d4492410cd37066 (diff)
downloadredot-engine-7d151c83811f8ac8873439826c16d88c83aba12f.tar.gz
Merge pull request #89902 from timothyqiu/not-available
Return `ERR_UNAVAILABLE` if native dialog is not supported
-rw-r--r--servers/display_server.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/servers/display_server.cpp b/servers/display_server.cpp
index 72228c25f2..8e6c659565 100644
--- a/servers/display_server.cpp
+++ b/servers/display_server.cpp
@@ -645,22 +645,22 @@ void DisplayServer::enable_for_stealing_focus(OS::ProcessID pid) {
Error DisplayServer::dialog_show(String p_title, String p_description, Vector<String> p_buttons, const Callable &p_callback) {
WARN_PRINT("Native dialogs not supported by this display server.");
- return OK;
+ return ERR_UNAVAILABLE;
}
Error DisplayServer::dialog_input_text(String p_title, String p_description, String p_partial, const Callable &p_callback) {
WARN_PRINT("Native dialogs not supported by this display server.");
- return OK;
+ return ERR_UNAVAILABLE;
}
Error DisplayServer::file_dialog_show(const String &p_title, const String &p_current_directory, const String &p_filename, bool p_show_hidden, FileDialogMode p_mode, const Vector<String> &p_filters, const Callable &p_callback) {
WARN_PRINT("Native dialogs not supported by this display server.");
- return OK;
+ return ERR_UNAVAILABLE;
}
Error DisplayServer::file_dialog_with_options_show(const String &p_title, const String &p_current_directory, const String &p_root, const String &p_filename, bool p_show_hidden, FileDialogMode p_mode, const Vector<String> &p_filters, const TypedArray<Dictionary> &p_options, const Callable &p_callback) {
WARN_PRINT("Native dialogs not supported by this display server.");
- return OK;
+ return ERR_UNAVAILABLE;
}
int DisplayServer::keyboard_get_layout_count() const {