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

LibGfx: Return correct color for palette.hover_highlight()

Now correctly returns HoverHighlight instead of ThreedHighlight.
This commit is contained in:
thankyouverycool 2020-06-10 15:17:12 -04:00 committed by Andreas Kling
parent 01bb6f0249
commit 9940a7f6de

View file

@ -91,7 +91,7 @@ public:
Color threed_highlight() const { return color(ColorRole::ThreedHighlight); }
Color threed_shadow1() const { return color(ColorRole::ThreedShadow1); }
Color threed_shadow2() const { return color(ColorRole::ThreedShadow2); }
Color hover_highlight() const { return color(ColorRole::ThreedHighlight); }
Color hover_highlight() const { return color(ColorRole::HoverHighlight); }
Color rubber_band_fill() const { return color(ColorRole::RubberBandFill); }
Color rubber_band_border() const { return color(ColorRole::RubberBandBorder); }
Color ruler() const { return color(ColorRole::Ruler); }