Qt: remove automatic param from update logic

At that point we already had user interaction, so there is no point in hiding the error dialogs
This commit is contained in:
Megamouse 2020-07-02 23:21:12 +02:00
parent 72337f2678
commit 78eb7e73bc
3 changed files with 8 additions and 14 deletions

View file

@ -186,7 +186,7 @@ void main_window::Init()
QAction *download_action = new QAction(tr("Download Update"), download_menu);
connect(download_action, &QAction::triggered, this, [this]
{
m_updater.update(false);
m_updater.update();
});
download_menu->addAction(download_action);