Changeset c48192e in mainline for uspace/app/taskbar
- Timestamp:
- 2022-11-09T20:56:24Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f106b0
- Parents:
- 68704ab
- Location:
- uspace/app/taskbar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/taskbar.c
r68704ab rc48192e 130 130 params.caption = "Task Bar"; 131 131 params.placement = ui_wnd_place_bottom_left; 132 133 /* Window has no titlebar */ 132 134 params.style &= ~ui_wds_titlebar; 135 136 /* Prevent taskbar window from being listed in taskbar */ 137 params.flags |= ui_wndf_system; 133 138 134 139 params.rect.p0.x = 0; -
uspace/app/taskbar/wndlist.c
r68704ab rc48192e 121 121 goto error; 122 122 123 if ((winfo->flags & wndf_popup) == 0) {123 if ((winfo->flags & (wndf_popup | wndf_system)) == 0) { 124 124 rc = wndlist_append(wndlist, wlist->windows[i], 125 125 winfo->caption, false); … … 330 330 goto error; 331 331 332 if ((winfo->flags & wndf_popup) == 0) {332 if ((winfo->flags & (wndf_popup | wndf_system)) == 0) { 333 333 rc = wndlist_append(wndlist, wnd_id, winfo->caption, true); 334 334 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.
