Skip to content

Commit

Permalink
Exclude Flatpak and Snap from proxy detection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
droidmonkey committed Aug 15, 2023
1 parent 0eded87 commit 6f14bec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/browser/BrowserSettingsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ QString BrowserSettingsWidget::resolveCustomProxyLocation()

void BrowserSettingsWidget::validateProxyLocation()
{
#if !defined(KEEPASSXC_DIST_SNAP) && !defined(KEEPASSXC_DIST_FLATPAK)
// Reset the UI
m_ui->messageWidget->setVisible(false);
m_ui->customProxyLocation->setStyleSheet("");
Expand Down Expand Up @@ -229,6 +230,7 @@ void BrowserSettingsWidget::validateProxyLocation()
}
}
}
#endif
}

void BrowserSettingsWidget::saveSettings()
Expand Down

0 comments on commit 6f14bec

Please sign in to comment.