backport 1062710:

Don't disable updates for the partition widget while applying operations. This
leads to corrupted graphics unter Qt4.6 and should not be necessary anymore as
executing operations will not delete any partition objects.


svn path=/branches/partitionmanager/1.0/partitionmanager/; revision=1062711
This commit is contained in:
Volker Lanz 2009-12-15 18:46:19 +00:00
parent df47e8dc50
commit a103406e4a
1 changed files with 0 additions and 3 deletions

View File

@ -929,8 +929,6 @@ void PartitionManagerWidget::onApplyAllOperations()
operationRunner().setReport(&progressDialog().report());
setUpdatesEnabled(false);
// Undo all operations so the runner has a defined starting point
for (int i = operationStack().operations().size() - 1; i >= 0; i--)
{
@ -1037,7 +1035,6 @@ void PartitionManagerWidget::onFileSystemSupport()
void PartitionManagerWidget::onFinished()
{
setUpdatesEnabled(true);
scanDevices();
}