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

LibWeb: Rename PaintPhase::FocusOutline -> Outline

Any element can have an outline, whether because of focus or not.
This commit is contained in:
Sam Atkins 2023-08-02 13:58:34 +01:00 committed by Andreas Kling
parent 9e5c7abd94
commit 8520afaa11
3 changed files with 6 additions and 6 deletions

View file

@ -23,7 +23,7 @@ enum class PaintPhase {
Background,
Border,
Foreground,
FocusOutline,
Outline,
Overlay,
};