mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:47:44 +00:00
LibGUI: In ScrollBar, rename AutomaticScrollingDirection to AutomaticScrollingKind
Also rename Decrement to DecrementButton and Increment to IncrementButton.
This commit is contained in:
parent
c34956839e
commit
129816e056
2 changed files with 13 additions and 13 deletions
|
@ -111,13 +111,13 @@ private:
|
|||
Component m_hovered_component { Component::Invalid };
|
||||
bool m_scrubber_in_use { false };
|
||||
|
||||
enum class AutomaticScrollingDirection {
|
||||
enum class AutomaticScrollingKind {
|
||||
None = 0,
|
||||
Decrement,
|
||||
Increment,
|
||||
DecrementButton,
|
||||
IncrementButton,
|
||||
};
|
||||
|
||||
AutomaticScrollingDirection m_automatic_scrolling_direction { AutomaticScrollingDirection::None };
|
||||
AutomaticScrollingKind m_automatic_scrolling_kind { AutomaticScrollingKind::None };
|
||||
RefPtr<Core::Timer> m_automatic_scrolling_timer;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue