Clear attributes on new partition creation

This commit is contained in:
Artem Grinev 2021-08-27 02:37:19 +04:00
parent c47ee6cae7
commit f4664671d6
1 changed files with 1 additions and 0 deletions

View File

@ -221,6 +221,7 @@ Partition* NewOperation::createNew(const Partition& cloneFrom,
p->sectorSize()));
p->setState(Partition::State::New);
p->setPartitionPath(QString());
p->setAttributes(0);
return p;
}