summaryrefslogtreecommitdiff
path: root/Servers/WindowServer/WSWindowFrame.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-16 22:37:46 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-16 22:37:46 +0200
commit486ed41fd2f5e9220fc9d9a4bf0459d0f99db64a (patch)
tree63e369934fc6550c2dbedd2ae84b0bdead97ae85 /Servers/WindowServer/WSWindowFrame.cpp
parent8251f97858c4539daae04e0f9819fdab97f7a593 (diff)
downloadserenity-486ed41fd2f5e9220fc9d9a4bf0459d0f99db64a.zip
WindowServer: Tweak window icon placement.
Diffstat (limited to 'Servers/WindowServer/WSWindowFrame.cpp')
-rw-r--r--Servers/WindowServer/WSWindowFrame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Servers/WindowServer/WSWindowFrame.cpp b/Servers/WindowServer/WSWindowFrame.cpp
index bf511db46c..75df7a3dfd 100644
--- a/Servers/WindowServer/WSWindowFrame.cpp
+++ b/Servers/WindowServer/WSWindowFrame.cpp
@@ -75,8 +75,8 @@ Rect WSWindowFrame::title_bar_icon_rect() const
{
auto titlebar_rect = title_bar_rect();
return {
- titlebar_rect.x() + 2,
- titlebar_rect.y(),
+ titlebar_rect.x() + 1,
+ titlebar_rect.y() + 1,
16,
titlebar_rect.height(),
};