Enable and disable syncing also in the folder objects.

This commit is contained in:
Klaas Freitag 2013-09-11 10:30:03 +02:00
parent eb5824f713
commit 287ec2f3df

View File

@ -361,6 +361,10 @@ void FolderMan::setSyncEnabled( bool enabled )
QTimer::singleShot(200, this, SLOT(slotScheduleFolderSync()));
}
_syncEnabled = enabled;
foreach( Folder *f, _folderMap.values() ) {
f->setSyncEnabled(enabled);
}
}
/*