1
Fork 0
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:
Nico Weber 2020-08-25 08:30:40 -04:00 committed by Andreas Kling
parent c34956839e
commit 129816e056
2 changed files with 13 additions and 13 deletions

View file

@ -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;
};