From dae8c5c9269dc100a52f64688c86bfb91e6b6358 Mon Sep 17 00:00:00 2001 From: Jonathan Marten Date: Fri, 23 Oct 2020 17:33:18 +0100 Subject: [PATCH] Expiry dialogue: Add 'actionsGroup' to layout Otherwise it appeared as a spurious line at the top left, and prevented the "Expire read after" checkbox being clicked on. --- src/collectionpage/collectionexpirywidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/collectionpage/collectionexpirywidget.cpp b/src/collectionpage/collectionexpirywidget.cpp index 86a86e7..f3980e3 100644 --- a/src/collectionpage/collectionexpirywidget.cpp +++ b/src/collectionpage/collectionexpirywidget.cpp @@ -66,6 +66,7 @@ CollectionExpiryWidget::CollectionExpiryWidget(QWidget *parent) QGroupBox *actionsGroup = new QGroupBox(this); actionsGroup->setFlat(true); // for mutual exclusion of the radio buttons + globalVBox->addWidget(actionsGroup); QHBoxLayout *moveToHBox = new QHBoxLayout(); moveToHBox->setContentsMargins(0, 0, 0, 0);