mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
LibGfx: Return correct color for palette.hover_highlight()
Now correctly returns HoverHighlight instead of ThreedHighlight.
This commit is contained in:
parent
01bb6f0249
commit
9940a7f6de
Notes:
sideshowbarker
2024-07-19 05:43:17 +09:00
Author: https://github.com/thankyouverycool Commit: https://github.com/SerenityOS/serenity/commit/9940a7f6def Pull-request: https://github.com/SerenityOS/serenity/pull/2539
1 changed files with 1 additions and 1 deletions
|
@ -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); }
|
||||
|
|
Loading…
Add table
Reference in a new issue