mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Don't offer send in non-dev mode when there's no log file specified.
--HG-- branch : feature-crashreport
This commit is contained in:
parent
d561a7078c
commit
7ca008ba86
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