1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

GSlider: Improve appearance by thinning the track a bit.

This commit is contained in:
Andreas Kling 2019-04-29 23:42:55 +02:00
parent c8aae534d7
commit 55d7d4e3d8
2 changed files with 10 additions and 10 deletions

View file

@ -14,7 +14,7 @@ public:
void set_range(int min, int max);
void set_value(int);
int track_height() const { return 4; }
int track_height() const { return 2; }
int knob_width() const { return 8; }
int knob_height() const { return 20; }