mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
fix log window margins (#4428)
closes #4428 Signed-off-by: Tayou <git@tayou.org>
This commit is contained in:
parent
45fd2a89ad
commit
0e68ba900f
1 changed files with 2 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue