MainWindow: hide check for updates on macos

This commit is contained in:
tobtoht 2023-02-12 16:24:02 +01:00
parent 79bc2a8b69
commit bbac1957aa
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -372,6 +372,10 @@ void MainWindow::initMenu() {
#else
ui->actionCheckForUpdates->setVisible(false);
#endif
#if defined(Q_OS_MACOS)
ui->actionCheckForUpdates->setVisible(false);
#endif
connect(ui->actionOfficialWebsite, &QAction::triggered, [this](){Utils::externalLinkWarning(this, "https://featherwallet.org");});
connect(ui->actionDonate_to_Feather, &QAction::triggered, this, &MainWindow::donateButtonClicked);
connect(ui->actionDocumentation, &QAction::triggered, this, &MainWindow::onShowDocumentation);