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
Notes: sideshowbarker 2024-07-19 05:43:17 +09:00

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); }