From e50fa413cbe2df8c0b7f5cb517b349bf730dae3c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 27 Jun 2020 20:46:35 +0200 Subject: [PATCH] WindowServer: Move window title bar icons 1px to the right This makes wider icons look better, since they no longer rub up against the left edge. --- Services/WindowServer/WindowFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/WindowServer/WindowFrame.cpp b/Services/WindowServer/WindowFrame.cpp index 41f17d163a..0c815ac781 100644 --- a/Services/WindowServer/WindowFrame.cpp +++ b/Services/WindowServer/WindowFrame.cpp @@ -162,7 +162,7 @@ Gfx::IntRect WindowFrame::title_bar_icon_rect() const { auto titlebar_rect = title_bar_rect(); return { - titlebar_rect.x() + 1, + titlebar_rect.x() + 2, titlebar_rect.y() + 2, 16, titlebar_rect.height(),