1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-29 16:16:38 +00:00

Merge pull request #103719 from YeldhamDev/build_detection_improvements

Make build profile project detection also set build options
This commit is contained in:
Thaddeus Crews
2025-06-03 15:30:14 -05:00
28 changed files with 786 additions and 82 deletions

View File

@@ -1960,6 +1960,12 @@ void FileDialog::_bind_methods() {
base_property_helper.register_property(PropertyInfo(Variant::PACKED_STRING_ARRAY, "values"), defaults.values, &FileDialog::set_option_values, &FileDialog::get_option_values);
base_property_helper.register_property(PropertyInfo(Variant::INT, "default"), defaults.default_idx, &FileDialog::set_option_default, &FileDialog::get_option_default);
PropertyListHelper::register_base_helper(&base_property_helper);
ADD_CLASS_DEPENDENCY("Button");
ADD_CLASS_DEPENDENCY("ConfirmationDialog");
ADD_CLASS_DEPENDENCY("LineEdit");
ADD_CLASS_DEPENDENCY("OptionButton");
ADD_CLASS_DEPENDENCY("Tree");
}
void FileDialog::set_show_hidden_files(bool p_show) {