1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:08:10 +00:00

LibGUI: Fix for disable state of SpinBox

This commit is contained in:
Hüseyin ASLITÜRK 2020-05-07 17:45:01 +03:00 committed by Andreas Kling
parent 532d4bc0ab
commit f0f98de5d8
2 changed files with 11 additions and 0 deletions

View file

@ -44,6 +44,8 @@ public:
void set_max(int max) { set_range(min(), max); }
void set_range(int min, int max);
void set_enabled(bool);
Function<void(int value)> on_change;
protected: