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

LibCore: Fix enum copy mistakes in REGISTER_TEXT_ALIGNMENT_PROPERTY

This commit is contained in:
kleines Filmröllchen 2022-03-25 12:30:48 +01:00 committed by Tim Flynn
parent e9a286f9e7
commit 8fe899e90d

View file

@ -378,10 +378,10 @@ T* Object::find_descendant_of_type_named(String const& name) requires IsBaseOf<O
{ Gfx::TextAlignment::Center, "Center" }, \
{ Gfx::TextAlignment::CenterLeft, "CenterLeft" }, \
{ Gfx::TextAlignment::CenterRight, "CenterRight" }, \
{ Gfx::TextAlignment::TopLeft, "TopCenter" }, \
{ Gfx::TextAlignment::TopCenter, "TopCenter" }, \
{ Gfx::TextAlignment::TopLeft, "TopLeft" }, \
{ Gfx::TextAlignment::TopRight, "TopRight" }, \
{ Gfx::TextAlignment::TopLeft, "BottomCenter" }, \
{ Gfx::TextAlignment::BottomCenter, "BottomCenter" }, \
{ Gfx::TextAlignment::BottomLeft, "BottomLeft" }, \
{ Gfx::TextAlignment::BottomRight, "BottomRight" })