mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
plasma: correct base class call in Plasma::Label::itemChange()
it has been like this since before the fork Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
cbbf7a75e5
commit
899f94c78d
1 changed files with 1 additions and 2 deletions
|
@ -253,8 +253,7 @@ QVariant Label::itemChange(GraphicsItemChange change, const QVariant & value)
|
|||
if (change == QGraphicsItem::ItemCursorHasChanged) {
|
||||
nativeWidget()->setCursor(cursor());
|
||||
}
|
||||
|
||||
return QGraphicsWidget::itemChange(change, value);
|
||||
return QGraphicsProxyWidget::itemChange(change, value);
|
||||
}
|
||||
|
||||
QSizeF Label::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const
|
||||
|
|
Loading…
Add table
Reference in a new issue