From 0e68ba900f798c5de387b8fd5d366f1d0884ce1a Mon Sep 17 00:00:00 2001 From: Tayou Date: Mon, 8 Dec 2025 13:12:50 +0100 Subject: [PATCH] fix log window margins (#4428) closes #4428 Signed-off-by: Tayou --- launcher/ui/ViewLogWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launcher/ui/ViewLogWindow.cpp b/launcher/ui/ViewLogWindow.cpp index f4390e2f1..028b44def 100644 --- a/launcher/ui/ViewLogWindow.cpp +++ b/launcher/ui/ViewLogWindow.cpp @@ -12,7 +12,8 @@ ViewLogWindow::ViewLogWindow(QWidget* parent) setWindowTitle(tr("View Launcher Logs")); setCentralWidget(m_page); setMinimumSize(m_page->size()); - setContentsMargins(0, 0, 0, 0); + setContentsMargins(6, 6, 0, 6); // the "Other Logs" instance page has 6px padding on the right, + // to have equal padding in all directions in the dialog we add it to all other sides. m_page->opened(); show(); }