1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:07:36 +00:00

LibGUI: Add m_ prefix to gutter_click_state in ScrollBar

Quick fix, this member did not seem to follow the conventions.
This commit is contained in:
MacDue 2022-03-08 21:48:19 +00:00 committed by Andreas Kling
parent 297e095755
commit 9ab3ab86cb
2 changed files with 11 additions and 12 deletions

View file

@ -57,8 +57,7 @@ private:
NotPressed,
BeforeScrubber,
AfterScrubber,
} gutter_click_state
= GutterClickState::NotPressed;
} m_gutter_click_state { GutterClickState::NotPressed };
int default_button_size() const { return 16; }
int button_size() const { return length(orientation()) <= (default_button_size() * 2) ? length(orientation()) / 2 : default_button_size(); }