enforce square aspect ratio when aspectRatioMode() is square of applets
in the panel svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=809947
This commit is contained in:
parent
5f6b242127
commit
812d870086
12
applet.cpp
12
applet.cpp
@ -710,6 +710,17 @@ void Applet::flushPendingConstraintsEvents()
|
||||
}
|
||||
}
|
||||
|
||||
//enforce square size in panels
|
||||
if (aspectRatioMode() == Plasma::Square && (c & Plasma::SizeConstraint || c & Plasma::FormFactorConstraint)) {
|
||||
if (formFactor() == Horizontal) {
|
||||
setSizePolicy(QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Expanding));
|
||||
resize(QSizeF(size().height(), size().height()));
|
||||
} else if (formFactor() == Vertical) {
|
||||
setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed));
|
||||
resize(QSizeF(size().width(), size().width()));
|
||||
}
|
||||
}
|
||||
|
||||
Containment* containment = qobject_cast<Plasma::Containment*>(this);
|
||||
if (isContainment() && containment) {
|
||||
containment->d->containmentConstraintsEvent(c);
|
||||
@ -1374,7 +1385,6 @@ Applet::Private::Private(KService::Ptr service, int uniqueID, Applet *applet)
|
||||
hasConfigurationInterface(false),
|
||||
failed(false),
|
||||
isContainment(false),
|
||||
square(false),
|
||||
transient(false)
|
||||
{
|
||||
if (appletId == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user