Invalidate colors cache on delete.

This commit is contained in:
Teo Mrnjavac 2016-07-27 16:49:53 +02:00
parent 9f1f3a8f54
commit c08eecbbaf

View File

@ -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 )
{