Skip to content
Snippets Groups Projects
Commit 6d60ca5e authored by Teo Mrnjavac's avatar Teo Mrnjavac
Browse files

Fix item order in ChoicePage

parent 6bd5736d
No related branches found
No related tags found
No related merge requests found
......@@ -95,8 +95,8 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
iconSize ) );
grp->addButton( eraseButton->buttonWidget() );
m_itemsLayout->addWidget( alongsideButton );
m_itemsLayout->addWidget( eraseButton );
m_itemsLayout->addWidget( alongsideButton );
m_itemsLayout->setSpacing( CalamaresUtils::defaultFontHeight() / 2 );
if ( osproberEntries.count() == 0 )
......@@ -203,6 +203,9 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
m_itemsLayout->addWidget( somethingElseButton );
grp->addButton( somethingElseButton->buttonWidget() );
//DEBUG:
alongsideButton->show();
connect( alongsideButton->buttonWidget(), &QRadioButton::toggled,
this, [ this ]( bool checked )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment