From 1538d4b187a2f7f6ce5ddeecd872b7045fa8010c Mon Sep 17 00:00:00 2001 From: tooomm Date: Tue, 18 Jan 2022 21:32:30 +0100 Subject: [PATCH] set column stretch --- cockatrice/src/dlg_settings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cockatrice/src/dlg_settings.cpp b/cockatrice/src/dlg_settings.cpp index 832dfeac9..62e2196bf 100644 --- a/cockatrice/src/dlg_settings.cpp +++ b/cockatrice/src/dlg_settings.cpp @@ -837,6 +837,7 @@ MessagesSettingsPage::MessagesSettingsPage() chatGrid->addWidget(&messagePopups, 4, 0, 1, 3); chatGrid->addWidget(&mentionPopups, 5, 0, 1, 3); chatGrid->addWidget(&roomHistory, 6, 0, 1, 3); + chatGrid->setColumnStretch(0, 1) chatGroupBox = new QGroupBox; chatGroupBox->setLayout(chatGrid); @@ -852,6 +853,7 @@ MessagesSettingsPage::MessagesSettingsPage() highlightNotice->addWidget(&invertHighlightForeground, 0, 1); highlightNotice->addWidget(highlightColor, 0, 2); highlightNotice->addWidget(&customAlertStringLabel, 1, 0, 1, 2); + highlightNotice->setColumnStretch(0, 1) highlightGroupBox = new QGroupBox; highlightGroupBox->setLayout(highlightNotice);