From 2fa17ea6a7857df5da6a3485db76c08c7ce00caa Mon Sep 17 00:00:00 2001 From: Faye Li Si Fi Date: Mon, 9 Jan 2017 10:23:31 -0800 Subject: [PATCH] fix missing parenthesis --- interface/src/ui/overlays/Web3DOverlay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/ui/overlays/Web3DOverlay.cpp b/interface/src/ui/overlays/Web3DOverlay.cpp index eb93fe6f47..bd21305023 100644 --- a/interface/src/ui/overlays/Web3DOverlay.cpp +++ b/interface/src/ui/overlays/Web3DOverlay.cpp @@ -359,7 +359,7 @@ void Web3DOverlay::setProperties(const QVariantMap& properties) { auto showKeyboardFocusHighlight = properties["showKeyboardFocusHighlight"]; if (showKeyboardFocusHighlight.isValid()) { - _showKeyboardFocusHighlight = showKeyboardFocusHighlight.toBool; + _showKeyboardFocusHighlight = showKeyboardFocusHighlight.toBool(); } }