diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-05 02:30:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 02:30:18 +0200 |
commit | edc63a2f6037e2fa695915094cf2762a5d15953f (patch) | |
tree | 901e2cf1b65a6cac0dbecf406795aa3b0395112d /editor/code_editor.cpp | |
parent | 43a2e9e6691eaa434b165e6f6b2e74fe6d07963c (diff) | |
parent | b7b63fe0349094d05aa2f12317bcc9e97f3638d3 (diff) |
Merge pull request #18028 from gabrii/18026
Fix #18026. Expose TextEdit::set_draw_breakpoint_gutter.
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 665ce7658f..ce35b655a2 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -775,7 +775,7 @@ void CodeTextEditor::update_editor_settings() { text_editor->set_highlight_current_line(EditorSettings::get_singleton()->get("text_editor/highlighting/highlight_current_line")); text_editor->cursor_set_blink_enabled(EditorSettings::get_singleton()->get("text_editor/cursor/caret_blink")); text_editor->cursor_set_blink_speed(EditorSettings::get_singleton()->get("text_editor/cursor/caret_blink_speed")); - text_editor->set_draw_breakpoint_gutter(EditorSettings::get_singleton()->get("text_editor/line_numbers/show_breakpoint_gutter")); + text_editor->set_breakpoint_gutter_enabled(EditorSettings::get_singleton()->get("text_editor/line_numbers/show_breakpoint_gutter")); text_editor->set_hiding_enabled(EditorSettings::get_singleton()->get("text_editor/line_numbers/code_folding")); text_editor->set_draw_fold_gutter(EditorSettings::get_singleton()->get("text_editor/line_numbers/code_folding")); text_editor->set_wrap_enabled(EditorSettings::get_singleton()->get("text_editor/line_numbers/word_wrap")); |