diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 9aa6abf0e..2074eb1a5 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -466,7 +466,12 @@ ChoicePage::applyActionChoice( ChoicePage::Choice choice ) QMutexLocker locker( &m_coreMutex ); m_core->revertDevice( selectedDevice() ); } ), - []{}, + [this] + { + // We need to reupdate after reverting because the splitter widget is + // not a true view. + updateActionChoicePreview( currentChoice() ); + }, this ); } setNextEnabled( !m_beforePartitionBarsView->selectionModel()->selectedRows().isEmpty() );