Skip to content
Snippets Groups Projects
Commit 3c878822 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.statesEditor: fix going back to base state

forwarding to QmlModelView::customNotification(); was missing

it missing since ever but the code I removed in
861981a3 shadowed this.

Reviewed-by: Kai Koehne
parent 4f016abb
No related branches found
No related tags found
No related merge requests found
...@@ -391,11 +391,12 @@ void StatesEditorView::otherPropertyChanged(const QmlObjectNode &qmlObjectNode, ...@@ -391,11 +391,12 @@ void StatesEditorView::otherPropertyChanged(const QmlObjectNode &qmlObjectNode,
} }
void StatesEditorView::customNotification(const AbstractView * /*view*/, const QString & /*identifier*/, const QList<ModelNode> & /*nodeList*/, const QList<QVariant> & /*data*/) void StatesEditorView::customNotification(const AbstractView * view, const QString & identifier, const QList<ModelNode> & nodeList, const QList<QVariant> & data)
{ {
if (debug) if (debug)
qDebug() << __FUNCTION__; qDebug() << __FUNCTION__;
QmlModelView::customNotification(view, identifier, nodeList, data);
} }
QPixmap StatesEditorView::renderState(int i) QPixmap StatesEditorView::renderState(int i)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment