Browse Source

Hiding SSL / SMTP option when building without SSL support

The SMTP server always uses unencrypted connections in this case so showing the check box is misleading
adaptive-webui-19844
Brian Kendall 9 years ago
parent
commit
630871214f
  1. 1
      src/gui/optionsdlg.cpp

1
src/gui/optionsdlg.cpp

@ -149,6 +149,7 @@ OptionsDialog::OptionsDialog(QWidget *parent)
#if defined(QT_NO_OPENSSL) #if defined(QT_NO_OPENSSL)
m_ui->checkWebUiHttps->setVisible(false); m_ui->checkWebUiHttps->setVisible(false);
m_ui->checkSmtpSSL->setVisible(false);
#endif #endif
#ifndef Q_OS_WIN #ifndef Q_OS_WIN

Loading…
Cancel
Save