1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

LibGUI: Allow scrolling through a ComboBox with the mouse wheel

This commit is contained in:
Andreas Kling 2020-05-12 15:10:31 +02:00
parent 18ff75e67b
commit e064999e0d
4 changed files with 51 additions and 26 deletions

View file

@ -53,6 +53,9 @@ public:
void set_model_column(int column) { m_model_column = column; }
virtual void select_all() override;
void move_selection(int steps);
private:
ListView();