mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Don't offer send in non-dev mode when there's no log file specified.
This commit is contained in:
parent
2d7784aad4
commit
de5c888318
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ void CCrashReportWidget::setup( const std::vector< std::pair< std::string, std::
|
|||
else
|
||||
{
|
||||
// If -host is specified, offer the send function
|
||||
if( !m_socket->url().isEmpty() )
|
||||
if( !m_socket->url().isEmpty() && !m_fileName.isEmpty() )
|
||||
{
|
||||
QPushButton *sendButton = new QPushButton( tr( "Send report" ), this );
|
||||
connect( sendButton, SIGNAL( clicked( bool ) ), this, SLOT( onSendClicked() ) );
|
||||
|
|
Loading…
Reference in a new issue