Un-comment the transform saving wich work perfectly in my case

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=753889
This commit is contained in:
Alexis Ménard 2007-12-28 18:04:00 +00:00
parent 296069a3c1
commit 6987d74f32

View File

@ -193,14 +193,13 @@ void Corona::loadApplets(const QString& configName)
Q_UNUSED(applet)
// FIXME: the transform does not stick; it gets set then almost immediately reset.
// find out why and then reenable this
/*
QList<qreal> m = cg.readEntry("transform", QList<qreal>());
QList<qreal> m = appletConfig.readEntry("transform", QList<qreal>());
if (m.count() == 9) {
QTransform t(m[0], m[1], m[2], m[3], m[4], m[5], m[6], m[7], m[8]);
applet->setTransform(t);
}
*/
}
}
}
if (d->containments.count() < 1) {