We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7327a56 commit 27ddd1dCopy full SHA for 27ddd1d
1 file changed
libraries/ui/src/VrMenu.cpp
@@ -49,8 +49,7 @@ MenuUserData::MenuUserData(QAction* action, QObject* qmlObject, QObject* qmlPare
49
virtual bool eventFilter(QObject* o, QEvent* e) override {
50
if (e->type() == QEvent::DynamicPropertyChange) {
51
QDynamicPropertyChangeEvent* dpc = static_cast<QDynamicPropertyChangeEvent*>(e);
52
- if (dpc->propertyName() == "exclusionGroup")
53
- {
+ if (dpc->propertyName() == "exclusionGroup") {
54
// unfortunately Qt doesn't support passing dynamic properties between C++ / QML, so we have to use this ugly helper function
55
QMetaObject::invokeMethod(_qmlParent,
56
"addExclusionGroup",
0 commit comments