1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibGUI: Implement vertical orientation for OpacitySlider

This commit is contained in:
FrHun 2022-12-07 23:38:36 +01:00 committed by Andreas Kling
parent 42feb0233a
commit 99624a8df4
2 changed files with 84 additions and 40 deletions

View file

@ -29,6 +29,9 @@ private:
Gfx::IntRect frame_inner_rect() const;
virtual Optional<UISize> calculated_min_size() const override;
virtual Optional<UISize> calculated_preferred_size() const override;
int value_at(Gfx::IntPoint) const;
bool m_dragging { false };