Invalidate colors cache on delete.
This commit is contained in:
parent
9f1f3a8f54
commit
c08eecbbaf
@ -20,6 +20,7 @@
|
||||
#include "core/PartitionCoreModule.h"
|
||||
|
||||
#include "core/BootLoaderModel.h"
|
||||
#include "core/ColorUtils.h"
|
||||
#include "core/DeviceModel.h"
|
||||
#include "core/PartitionInfo.h"
|
||||
#include "core/PartitionIterator.h"
|
||||
@ -258,6 +259,11 @@ PartitionCoreModule::deletePartition( Device* device, Partition* partition )
|
||||
deletePartition( device, partition );
|
||||
}
|
||||
|
||||
if ( partition->roles().has( PartitionRole::Logical ) )
|
||||
{
|
||||
ColorUtils::invalidateCache();
|
||||
}
|
||||
|
||||
QList< Calamares::job_ptr >& jobs = deviceInfo->jobs;
|
||||
if ( partition->state() == Partition::StateNew )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user