mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix lambda capture error
This commit is contained in:
parent
237c7ad114
commit
d70bc94f61
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ MainWindow::MainWindow(QWidget *parent)
|
||||||
|
|
||||||
connect(
|
connect(
|
||||||
userSettingsPage_, SIGNAL(trayOptionChanged(bool)), trayIcon_, SLOT(setVisible(bool)));
|
userSettingsPage_, SIGNAL(trayOptionChanged(bool)), trayIcon_, SLOT(setVisible(bool)));
|
||||||
connect(userSettingsPage_, &UserSettingsPage::themeChanged, this, [this]() {
|
connect(userSettingsPage_, &UserSettingsPage::themeChanged, this, []() {
|
||||||
utils::clearAuthorColors();
|
utils::clearAuthorColors();
|
||||||
});
|
});
|
||||||
connect(
|
connect(
|
||||||
|
|
Loading…
Reference in a new issue