mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
Increased smooth scroll speed and added user setting
This commit is contained in:
parent
1be30f35a6
commit
d6599fde0a
4 changed files with 19 additions and 1 deletions
|
@ -1088,6 +1088,7 @@ void CodeTextEditor::update_editor_settings() {
|
|||
text_editor->set_draw_breakpoint_gutter(EditorSettings::get_singleton()->get("text_editor/line_numbers/show_breakpoint_gutter"));
|
||||
text_editor->cursor_set_block_mode(EditorSettings::get_singleton()->get("text_editor/cursor/block_caret"));
|
||||
text_editor->set_smooth_scroll_enabled(EditorSettings::get_singleton()->get("text_editor/open_scripts/smooth_scrolling"));
|
||||
text_editor->set_v_scroll_speed(EditorSettings::get_singleton()->get("text_editor/open_scripts/v_scroll_speed"));
|
||||
}
|
||||
|
||||
void CodeTextEditor::set_error(const String &p_error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue