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
Notes: sideshowbarker 2024-07-19 05:18:57 +09:00
2 changed files with 2 additions and 1 deletions

View File

@ -3,3 +3,4 @@ Command=
[Window]
Opacity=255
AudibleBeep=0
ScrollLength=4

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",