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.

BUG:218685

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1062710
This commit is contained in:
Volker Lanz 2009-12-15 18:43:30 +00:00
parent 4d4f757a3f
commit 72b0cdac0d
1 changed files with 0 additions and 3 deletions

View File

@ -931,8 +931,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--)
{
@ -1039,7 +1037,6 @@ void PartitionManagerWidget::onFileSystemSupport()
void PartitionManagerWidget::onFinished()
{
setUpdatesEnabled(true);
scanDevices();
}