mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
Only send email if the email CB is checked.
This commit is contained in:
parent
9a9b2042dd
commit
001b870654
1 changed files with 3 additions and 1 deletions
|
@ -203,7 +203,9 @@ void CCrashReportWidget::onSendClicked()
|
|||
SCrashReportData data;
|
||||
data.description = m_ui.descriptionEdit->toPlainText();
|
||||
data.report = m_ui.reportEdit->toPlainText();
|
||||
data.email = m_ui.emailEdit->text();
|
||||
|
||||
if( m_ui.emailCB->isChecked() )
|
||||
data.email = m_ui.emailEdit->text();
|
||||
|
||||
m_socket->sendReport( data );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue