Ignore:
Timestamp:
2021-10-24T08:28:43Z (2 years ago)
Author:
GitHub <noreply@…>
Children:
f628215
Parents:
2ce943a (diff), cd981f2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Erik Kučák <35500848+Riko196@…> (2021-10-24 08:28:43)
git-committer:
GitHub <noreply@…> (2021-10-24 08:28:43)
Message:

Merge branch 'HelenOS:master' into master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfxfont/include/types/gfx/text.h

    r2ce943a r8a9a41e  
    4242/** Text horizontal alignment */
    4343typedef enum {
    44         /** Align text left */
     44        /** Align text left (start at anchor point) */
    4545        gfx_halign_left,
    46         /** Align text on the center */
     46        /** Align text on the center (center around anchor point) */
    4747        gfx_halign_center,
    48         /** Align text right */
     48        /** Align text right (end just before anchor point) */
    4949        gfx_halign_right,
    5050        /** Justify text on both left and right edge */
     
    5454/** Text vertical alignment */
    5555typedef enum {
    56         /** Align top */
     56        /** Align top (starts at anchor point) */
    5757        gfx_valign_top,
    58         /** Align center */
     58        /** Align center (centered around anchor point) */
    5959        gfx_valign_center,
    60         /** Align bottom */
     60        /** Align bottom (end just before anchor point) */
    6161        gfx_valign_bottom,
    6262        /** Align to baseline */
Note: See TracChangeset for help on using the changeset viewer.