Skip to content

Commit 27ddd1d

Browse files
committed
Review fix
1 parent 7327a56 commit 27ddd1d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

libraries/ui/src/VrMenu.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ MenuUserData::MenuUserData(QAction* action, QObject* qmlObject, QObject* qmlPare
4949
virtual bool eventFilter(QObject* o, QEvent* e) override {
5050
if (e->type() == QEvent::DynamicPropertyChange) {
5151
QDynamicPropertyChangeEvent* dpc = static_cast<QDynamicPropertyChangeEvent*>(e);
52-
if (dpc->propertyName() == "exclusionGroup")
53-
{
52+
if (dpc->propertyName() == "exclusionGroup") {
5453
// unfortunately Qt doesn't support passing dynamic properties between C++ / QML, so we have to use this ugly helper function
5554
QMetaObject::invokeMethod(_qmlParent,
5655
"addExclusionGroup",

0 commit comments

Comments
 (0)