Changeset b433f68 in mainline for uspace/lib/ui/src/pbutton.c


Ignore:
Timestamp:
2021-02-26T16:23:36Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
77ffa01
Parents:
fe40b67
Message:

Puttext needs to know the color of the text being printed

So far we were using the GC's current drawing color. But unless there
was a way to read it, we could not render text-mode text in the correct
color.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/src/pbutton.c

    rfe40b67 rb433f68  
    269269                goto error;
    270270
    271         rc = gfx_set_color(pbutton->res->gc, pbutton->res->btn_text_color);
    272         if (rc != EOK)
    273                 goto error;
    274 
    275271        /* Center of button rectangle */
    276272        pos.x = (rect.p0.x + rect.p1.x) / 2;
     
    283279
    284280        gfx_text_fmt_init(&fmt);
     281        fmt.color = pbutton->res->btn_text_color;
    285282        fmt.halign = gfx_halign_center;
    286283        fmt.valign = gfx_valign_center;
Note: See TracChangeset for help on using the changeset viewer.