From 09d5884b0db747db7985657934923a57cde5d196 Mon Sep 17 00:00:00 2001 From: kobewi Date: Fri, 2 Jun 2023 22:36:04 +0200 Subject: [PATCH] Enable bookmarks gutter --- editor/code_editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index fe45894c529..9bcfea2a7f0 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1962,6 +1962,7 @@ CodeTextEditor::CodeTextEditor() { add_child(text_editor); text_editor->set_v_size_flags(SIZE_EXPAND_FILL); text_editor->set_structured_text_bidi_override(TextServer::STRUCTURED_TEXT_GDSCRIPT); + text_editor->set_draw_bookmarks_gutter(true); int ot_mode = EDITOR_GET("interface/editor/code_font_contextual_ligatures"); Ref fc = text_editor->get_theme_font(SNAME("font"));