diff options
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r-- | desktop-widgets/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp index b9112c11a..740b38f76 100644 --- a/desktop-widgets/mainwindow.cpp +++ b/desktop-widgets/mainwindow.cpp @@ -260,6 +260,7 @@ MainWindow::MainWindow() : QMainWindow(), toggle_connection->setText(plugin->socialNetworkName()); toggle_connection->setIcon(QIcon(plugin->socialNetworkIcon())); toggle_connection->setData(QVariant::fromValue(plugin)); + connect(toggle_connection, &QAction::triggered, [plugin](bool triggered){ plugin->requestLogin(); }); QAction *share_on = new QAction(this); share_on->setText(plugin->socialNetworkName()); |