]> Nutra Git (v2) - gamesguru/feather.git/commitdiff
MainWindow: hide check for updates on macos
authortobtoht <tob@featherwallet.org>
Sun, 12 Feb 2023 15:24:02 +0000 (16:24 +0100)
committertobtoht <tob@featherwallet.org>
Sun, 12 Feb 2023 15:24:02 +0000 (16:24 +0100)
src/MainWindow.cpp

index 77d708a2d8d980a7c8452e8b92235d7c98b9ac75..fa8a9d76da913943db6254dc9dc4adbf40b64bb1 100644 (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);