1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Make build profile project detection also set build options

This commit is contained in:
Michael Alexsander
2025-03-06 15:42:10 -03:00
parent e45cc68092
commit 454e4f817c
28 changed files with 786 additions and 82 deletions

View File

@@ -7629,6 +7629,12 @@ void TextEdit::_bind_methods() {
/* Settings. */
GLOBAL_DEF(PropertyInfo(Variant::FLOAT, "gui/timers/text_edit_idle_detect_sec", PROPERTY_HINT_RANGE, "0,10,0.01,or_greater"), 3);
GLOBAL_DEF(PropertyInfo(Variant::INT, "gui/common/text_edit_undo_stack_max_size", PROPERTY_HINT_RANGE, "0,10000,1,or_greater"), 1024);
/* Dependencies */
ADD_CLASS_DEPENDENCY("HScrollBar");
ADD_CLASS_DEPENDENCY("PopupMenu");
ADD_CLASS_DEPENDENCY("Timer");
ADD_CLASS_DEPENDENCY("VScrollBar");
}
/* Internal API for CodeEdit. */