1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

WindowServer: Tweak window icon placement again.

This commit is contained in:
Andreas Kling 2019-04-18 02:11:23 +02:00
parent 7b3876383f
commit c7d6e568ba

View file

@ -75,7 +75,7 @@ Rect WSWindowFrame::title_bar_icon_rect() const
auto titlebar_rect = title_bar_rect();
return {
titlebar_rect.x() + 1,
titlebar_rect.y() + 1,
titlebar_rect.y() + 2,
16,
titlebar_rect.height(),
};