Changeset 4583015 in mainline for uspace/lib/ui/src/label.c
- Timestamp:
- 2022-03-07T16:10:44Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ca2680d
- Parents:
- 5c27e77
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/label.c
r5c27e77 r4583015 215 215 216 216 gfx_text_fmt_init(&fmt); 217 fmt.font = label->res->font; 217 218 fmt.color = label->res->wnd_text_color; 218 219 fmt.halign = label->halign; 219 220 fmt.valign = label->valign; 220 221 221 rc = gfx_puttext( label->res->font,&pos, &fmt, label->text);222 rc = gfx_puttext(&pos, &fmt, label->text); 222 223 if (rc != EOK) 223 224 goto error;
Note:
See TracChangeset
for help on using the changeset viewer.