mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-24 21:45:20 +00:00
LibVT: Don't scroll to bottom when pressing the right shift key
This commit is contained in:
parent
bdf72a7c7a
commit
226c0cfb20
Notes:
sideshowbarker
2024-07-19 04:54:15 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/226c0cfb200
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ void TerminalWidget::keydown_event(GUI::KeyEvent& event)
|
|||
|
||||
m_terminal.handle_key_press(event.key(), event.code_point(), event.modifiers());
|
||||
|
||||
if (event.key() != Key_Control && event.key() != Key_Alt && event.key() != Key_Shift && event.key() != Key_Logo)
|
||||
if (event.key() != Key_Control && event.key() != Key_Alt && event.key() != Key_LeftShift && event.key() != Key_RightShift && event.key() != Key_Logo)
|
||||
m_scrollbar->set_value(m_scrollbar->max());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue