Allow floating-point values in the idle parse delay editor setting
This also makes value changes effective without having to restart the editor.
This commit is contained in:
parent
cce2e4b07c
commit
2041e21eb5
2 changed files with 5 additions and 2 deletions
|
@ -1289,6 +1289,8 @@ void CodeTextEditor::_on_settings_change() {
|
||||||
text_editor->set_callhint_settings(
|
text_editor->set_callhint_settings(
|
||||||
EDITOR_DEF("text_editor/completion/put_callhint_tooltip_below_current_line", true),
|
EDITOR_DEF("text_editor/completion/put_callhint_tooltip_below_current_line", true),
|
||||||
EDITOR_DEF("text_editor/completion/callhint_tooltip_offset", Vector2()));
|
EDITOR_DEF("text_editor/completion/callhint_tooltip_offset", Vector2()));
|
||||||
|
|
||||||
|
idle->set_wait_time(EDITOR_DEF("text_editor/completion/idle_parse_delay", 2.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CodeTextEditor::_text_changed_idle_timeout() {
|
void CodeTextEditor::_text_changed_idle_timeout() {
|
||||||
|
@ -1403,7 +1405,7 @@ CodeTextEditor::CodeTextEditor() {
|
||||||
idle = memnew(Timer);
|
idle = memnew(Timer);
|
||||||
add_child(idle);
|
add_child(idle);
|
||||||
idle->set_one_shot(true);
|
idle->set_one_shot(true);
|
||||||
idle->set_wait_time(EDITOR_DEF("text_editor/completion/idle_parse_delay", 2));
|
idle->set_wait_time(EDITOR_DEF("text_editor/completion/idle_parse_delay", 2.0));
|
||||||
|
|
||||||
code_complete_timer = memnew(Timer);
|
code_complete_timer = memnew(Timer);
|
||||||
add_child(code_complete_timer);
|
add_child(code_complete_timer);
|
||||||
|
|
|
@ -459,7 +459,8 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
|
||||||
_initial_set("text_editor/cursor/right_click_moves_caret", true);
|
_initial_set("text_editor/cursor/right_click_moves_caret", true);
|
||||||
|
|
||||||
// Completion
|
// Completion
|
||||||
_initial_set("text_editor/completion/idle_parse_delay", 2);
|
_initial_set("text_editor/completion/idle_parse_delay", 2.0);
|
||||||
|
hints["text_editor/completion/idle_parse_delay"] = PropertyInfo(Variant::REAL, "text_editor/completion/idle_parse_delay", PROPERTY_HINT_RANGE, "0.1, 10, 0.01");
|
||||||
_initial_set("text_editor/completion/auto_brace_complete", false);
|
_initial_set("text_editor/completion/auto_brace_complete", false);
|
||||||
_initial_set("text_editor/completion/put_callhint_tooltip_below_current_line", true);
|
_initial_set("text_editor/completion/put_callhint_tooltip_below_current_line", true);
|
||||||
_initial_set("text_editor/completion/callhint_tooltip_offset", Vector2());
|
_initial_set("text_editor/completion/callhint_tooltip_offset", Vector2());
|
||||||
|
|
Loading…
Reference in a new issue