mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-18 16:31:44 +03:00
Revert "Added warning for enable encryption #4584"
This reverts commit 8e15b77db3
.
This commit is contained in:
parent
9483fecc42
commit
c89dc68cd7
@ -37,8 +37,7 @@ SettingsDialog::SettingsDialog(QWidget* parent, AppConfig& config) :
|
|||||||
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint),
|
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint),
|
||||||
Ui::SettingsDialogBase(),
|
Ui::SettingsDialogBase(),
|
||||||
m_AppConfig(config),
|
m_AppConfig(config),
|
||||||
m_SuppressElevateWarning(false),
|
m_SuppressElevateWarning(false)
|
||||||
m_SuppressEncryptionWarning(false)
|
|
||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
@ -69,9 +68,7 @@ SettingsDialog::SettingsDialog(QWidget* parent, AppConfig& config) :
|
|||||||
m_pCheckBoxEnableCrypto->setChecked(false);
|
m_pCheckBoxEnableCrypto->setChecked(false);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_SuppressEncryptionWarning = true;
|
|
||||||
m_pCheckBoxEnableCrypto->setChecked(m_AppConfig.getCryptoEnabled());
|
m_pCheckBoxEnableCrypto->setChecked(m_AppConfig.getCryptoEnabled());
|
||||||
m_SuppressEncryptionWarning = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,7 +83,6 @@ void SettingsDialog::accept()
|
|||||||
appConfig().setLanguage(m_pComboLanguage->itemData(m_pComboLanguage->currentIndex()).toString());
|
appConfig().setLanguage(m_pComboLanguage->itemData(m_pComboLanguage->currentIndex()).toString());
|
||||||
appConfig().setElevateMode(m_pCheckBoxElevateMode->isChecked());
|
appConfig().setElevateMode(m_pCheckBoxElevateMode->isChecked());
|
||||||
appConfig().setAutoHide(m_pCheckBoxAutoHide->isChecked());
|
appConfig().setAutoHide(m_pCheckBoxAutoHide->isChecked());
|
||||||
appConfig().setCryptoEnabled(m_pCheckBoxEnableCrypto->isChecked());
|
|
||||||
appConfig().saveSettings();
|
appConfig().saveSettings();
|
||||||
QDialog::accept();
|
QDialog::accept();
|
||||||
}
|
}
|
||||||
@ -168,17 +164,5 @@ void SettingsDialog::on_m_pCheckBoxElevateMode_toggled(bool checked)
|
|||||||
|
|
||||||
void SettingsDialog::on_m_pCheckBoxEnableCrypto_toggled(bool checked)
|
void SettingsDialog::on_m_pCheckBoxEnableCrypto_toggled(bool checked)
|
||||||
{
|
{
|
||||||
if (checked && !m_SuppressEncryptionWarning) {
|
m_AppConfig.setCryptoEnabled(checked);
|
||||||
int r = QMessageBox::warning(
|
|
||||||
this, tr("Synergy SSL Encryption"),
|
|
||||||
tr("Are you sure you want to enable SSL encryption?\n\n"
|
|
||||||
"This allows Synergy to establish a secure connection, "
|
|
||||||
"but can slow down the data transfer of clipboard and file."),
|
|
||||||
QMessageBox::Yes | QMessageBox::No);
|
|
||||||
|
|
||||||
if (r != QMessageBox::Yes) {
|
|
||||||
m_pCheckBoxEnableCrypto->setChecked(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,6 @@ class SettingsDialog : public QDialog, public Ui::SettingsDialogBase
|
|||||||
SynergyLocale m_Locale;
|
SynergyLocale m_Locale;
|
||||||
CoreInterface m_CoreInterface;
|
CoreInterface m_CoreInterface;
|
||||||
bool m_SuppressElevateWarning;
|
bool m_SuppressElevateWarning;
|
||||||
bool m_SuppressEncryptionWarning;
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_m_pCheckBoxEnableCrypto_toggled(bool checked);
|
void on_m_pCheckBoxEnableCrypto_toggled(bool checked);
|
||||||
|
Loading…
Reference in New Issue
Block a user