Clean up PluginsPage some more

This commit is contained in:
Mm2PL 2023-02-01 01:44:32 +01:00
parent f534d43531
commit 8665d22f48
No known key found for this signature in database
GPG key ID: 94AC9B80EFA15ED9

View file

@ -48,11 +48,8 @@ PluginsPage::PluginsPage()
auto *box = this->createCheckBox("Enable plugins", auto *box = this->createCheckBox("Enable plugins",
getSettings()->enableAnyPlugins); getSettings()->enableAnyPlugins);
QObject::connect(box, &QCheckBox::released, [this, box]() { QObject::connect(box, &QCheckBox::released, [this]() {
//using namespace std::chrono_literals;
//QTimer::singleShot(10000ms, [this]() {
this->rebuildContent(); this->rebuildContent();
//});
}); });
groupLayout->addRow(box); groupLayout->addRow(box);
} }