Changeset cc90846 in mainline for uspace/srv/hid/display/dsops.c


Ignore:
Timestamp:
2020-01-27T13:07:17Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f5191b4
Parents:
01c2759
git-author:
Jiri Svoboda <jiri@…> (2020-01-26 18:07:01)
git-committer:
Jiri Svoboda <jiri@…> (2020-01-27 13:07:17)
Message:

Repaint display when window is created or destroyed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/dsops.c

    r01c2759 rcc90846  
    7171            wnd->id);
    7272
     73        /* XXX All the below should probably be part of ds_window_create() */
    7374        wnd->dpos.x = ((wnd->id - 1) & 1) * 400;
    7475        wnd->dpos.y = ((wnd->id - 1) & 2) / 2 * 300;
     
    7677        seat = ds_display_first_seat(client->display);
    7778        ds_seat_set_focus(seat, wnd);
     79        (void) ds_display_paint(wnd->display, NULL);
    7880
    7981        *rwnd_id = wnd->id;
Note: See TracChangeset for help on using the changeset viewer.