Changeset 5d62130 in mainline for uspace/lib/ui/src/window.c


Ignore:
Timestamp:
2022-11-13T10:56:43Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a130983
Parents:
a5c7b865
Message:

Taskbar should be always on top

We add support for topmost windows and make the taskbar window topmost.

File:
1 edited

Legend:

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

    ra5c7b865 r5d62130  
    228228        if ((params->flags & ui_wndf_popup) != 0)
    229229                dparams.flags |= wndf_popup;
     230        if ((params->flags & ui_wndf_topmost) != 0)
     231                dparams.flags |= wndf_topmost;
    230232        if ((params->flags & ui_wndf_system) != 0)
    231233                dparams.flags |= wndf_system;
Note: See TracChangeset for help on using the changeset viewer.