1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

Terminal: Bump the default ScrollLength to 4

This feels so much better than scrolling one line at a time. :^)
This commit is contained in:
Andreas Kling 2020-06-30 18:33:09 +02:00
parent 310fbe48e5
commit 14477eb565
2 changed files with 2 additions and 1 deletions

View file

@ -105,7 +105,7 @@ TerminalWidget::TerminalWidget(int ptm_fd, bool automatic_size_policy, RefPtr<Co
m_scrollbar->on_change = [this](int) {
force_repaint();
};
set_scroll_length(m_config->read_num_entry("Window", "ScrollLength", 1));
set_scroll_length(m_config->read_num_entry("Window", "ScrollLength", 4));
dbgprintf("Terminal: Load config file from %s\n", m_config->file_name().characters());
m_cursor_blink_timer->set_interval(m_config->read_num_entry("Text",