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:
parent
297e095755
commit
9ab3ab86cb
2 changed files with 11 additions and 12 deletions
|
@ -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(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue