|
|
|
@ -20,6 +20,7 @@
|
|
|
|
|
#include "modulesystem/Module.h"
|
|
|
|
|
#include "modulesystem/ModuleManager.h"
|
|
|
|
|
#include "utils/Logger.h"
|
|
|
|
|
#include "utils/Paste.h"
|
|
|
|
|
#include "utils/Retranslator.h"
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_PYTHONQT
|
|
|
|
@ -213,6 +214,10 @@ DebugWindow::DebugWindow()
|
|
|
|
|
}
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
// Send Log button only if it would be useful
|
|
|
|
|
m_ui->sendLogButton->setVisible( CalamaresUtils::Paste::isEnabled() );
|
|
|
|
|
connect( m_ui->sendLogButton, &QPushButton::clicked, [this]() { CalamaresUtils::Paste::doLogUpload( this ); } );
|
|
|
|
|
|
|
|
|
|
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); setWindowTitle( tr( "Debug information" ) ); );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|