From bbac1957aa50b6e5e16fe799b322233adb9f9070 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sun, 12 Feb 2023 16:24:02 +0100 Subject: [PATCH] MainWindow: hide check for updates on macos --- src/MainWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 77d708a2..fa8a9d76 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -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); -- 2.52.0