[libcalamaresui] Give slideshow (ExecutionViewStep) widgets names

This commit is contained in:
Adriaan de Groot 2021-02-17 14:34:33 +01:00
parent 7e6c3a2309
commit 3a4dcb6913

View File

@ -62,6 +62,10 @@ ExecutionViewStep::ExecutionViewStep( QObject* parent )
, m_label( new QLabel )
, m_slideshow( makeSlideshow( m_widget ) )
{
m_widget->setObjectName( "slideshow" );
m_progressBar->setObjectName( "exec-progress" );
m_label->setObjectName( "exec-message" );
QVBoxLayout* layout = new QVBoxLayout( m_widget );
QVBoxLayout* innerLayout = new QVBoxLayout;