Changeset 1099f25 in mainline for uspace/app/taskbar/wndlist.c


Ignore:
Timestamp:
2022-11-08T22:16:37Z (18 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
54593f3
Parents:
7bcd15f
Message:

Fix window buttons leaving artifacts

They were extending into the window frame, which is not repainted
by ui_window_paint().

File:
1 edited

Legend:

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

    r7bcd15f r1099f25  
    305305        } else {
    306306                rect.p0.x = 145 * idx + 90;
    307                 rect.p0.y = 3;
     307                rect.p0.y = 4;
    308308                rect.p1.x = 145 * idx + 230;
    309                 rect.p1.y = 29;
     309                rect.p1.y = 28;
    310310        }
    311311
Note: See TracChangeset for help on using the changeset viewer.