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

LibGfx: Add support for TextAlignment::TopCenter / BottomCenter

Now supports TextAlignment::TopCenter and TextAlignment::BottomCenter
for the Painter::draw_text.

Also patched this in Spreadsheet/CellTypeDialog.cpp
This commit is contained in:
Vrins 2022-02-27 01:33:48 +01:00 committed by Andreas Kling
parent 73ade62d4f
commit 3b22fd9a9f
5 changed files with 33 additions and 2 deletions

View file

@ -15,8 +15,10 @@ namespace Gfx {
M(Center) \
M(CenterLeft) \
M(CenterRight) \
M(TopCenter) \
M(TopLeft) \
M(TopRight) \
M(BottomCenter) \
M(BottomLeft) \
M(BottomRight)