Changeset c48192e in mainline for uspace/lib/ui


Ignore:
Timestamp:
2022-11-09T20:56:24Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2f106b0
Parents:
68704ab
Message:

Prevent task bar from being listed in task bar

Location:
uspace/lib/ui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/include/types/ui/window.h

    r68704ab rc48192e  
    6666typedef enum {
    6767        /** Popup window */
    68         ui_wndf_popup = 0x1
     68        ui_wndf_popup = 0x1,
     69        /** Special system window */
     70        ui_wndf_system = 0x2
    6971} ui_wnd_flags_t;
    7072
  • uspace/lib/ui/src/window.c

    r68704ab rc48192e  
    228228        if ((params->flags & ui_wndf_popup) != 0)
    229229                dparams.flags |= wndf_popup;
     230        if ((params->flags & ui_wndf_system) != 0)
     231                dparams.flags |= wndf_system;
    230232
    231233        if (ui->display != NULL) {
Note: See TracChangeset for help on using the changeset viewer.