Changeset c48192e in mainline for uspace/app/taskbar/wndlist.c


Ignore:
Timestamp:
2022-11-09T20:56:24Z (2 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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/wndlist.c

    r68704ab rc48192e  
    121121                        goto error;
    122122
    123                 if ((winfo->flags & wndf_popup) == 0) {
     123                if ((winfo->flags & (wndf_popup | wndf_system)) == 0) {
    124124                        rc = wndlist_append(wndlist, wlist->windows[i],
    125125                            winfo->caption, false);
     
    330330                goto error;
    331331
    332         if ((winfo->flags & wndf_popup) == 0) {
     332        if ((winfo->flags & (wndf_popup | wndf_system)) == 0) {
    333333                rc = wndlist_append(wndlist, wnd_id, winfo->caption, true);
    334334                if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.