Fix segfault on launch

This commit is contained in:
Simon Quigley 2023-12-02 12:21:47 -06:00
parent 5e616be3a4
commit 215ba27500

View File

@ -67,11 +67,11 @@ bool InstallerPrompt::checkInternetConnection() {
void InstallerPrompt::updateConnectionStatus(bool online) { void InstallerPrompt::updateConnectionStatus(bool online) {
if (online) { if (online) {
connectionStatusLabel->setText(tr("Connected to the internet")); ui->connectionStatusLabel->setText(tr("Connected to the internet"));
connectWifiButton->setVisible(false); ui->connectWifiButton->setVisible(false);
} else { } else {
connectionStatusLabel->setText(tr("Not connected to the internet")); ui->connectionStatusLabel->setText(tr("Not connected to the internet"));
connectWifiButton->setVisible(true); ui->connectWifiButton->setVisible(true);
} }
} }