feat(GODT-3046): added ReportBugFallback event support in bridge-gui.

This commit is contained in:
Xavier Michelon
2023-11-07 11:34:55 +01:00
parent 26897f06c4
commit e51c81fc03
6 changed files with 77 additions and 11 deletions

View File

@ -323,8 +323,8 @@ void SettingsTab::exportTLSCertificates(QString const &folderPath) {
//****************************************************************************************************************************************************
/// \return The state of the check box.
//****************************************************************************************************************************************************
bool SettingsTab::nextBugReportWillSucceed() const {
return ui_.checkNextBugReportWillSucceed->isChecked();
SettingsTab::BugReportResult SettingsTab::nextBugReportResult() const {
return BugReportResult(ui_.comboBugReportResult->currentIndex());
}
@ -522,7 +522,7 @@ void SettingsTab::resetUI() {
ui_.editAddress->setText(QString());
ui_.editDescription->setPlainText(QString());
ui_.labelIncludeLogsValue->setText(QString());
ui_.checkNextBugReportWillSucceed->setChecked(true);
ui_.comboBugReportResult->setCurrentIndex(0);
ui_.editHostname->setText("localhost");
ui_.spinPortIMAP->setValue(1143);