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
commit 9ab3ab86cb
Notes: sideshowbarker 2024-07-17 17:30:25 +09:00
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(); }