1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

MouseSettings: Add "Natural scrolling" toggle

This commit is contained in:
Filiph Sandström 2022-11-30 13:52:42 +01:00 committed by Linus Groh
parent 5a083c03a6
commit 2e3efd34c3
3 changed files with 22 additions and 4 deletions

View file

@ -31,5 +31,6 @@ private:
RefPtr<GUI::HorizontalSlider> m_double_click_speed_slider;
RefPtr<GUI::Label> m_double_click_speed_label;
RefPtr<GUI::CheckBox> m_switch_buttons_checkbox;
RefPtr<GUI::CheckBox> m_natural_scroll_checkbox;
RefPtr<MouseSettings::DoubleClickArrowWidget> m_double_click_arrow_widget;
};