mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
fix web entities not accepting keyboard focus
This commit is contained in:
parent
a2208725e0
commit
f1ed8ef1dd
2 changed files with 1 additions and 2 deletions
|
@ -171,7 +171,7 @@ void WebEntityRenderer::doRenderUpdateSynchronousTyped(const ScenePointer& scene
|
|||
_dpi = entity->getDpi();
|
||||
_color = entity->getColor();
|
||||
_alpha = entity->getAlpha();
|
||||
_wantsKeyboardFocus = entity->wantsKeyboardFocus();
|
||||
_wantsKeyboardFocus = entity->getWantsKeyboardFocus();
|
||||
_pulseProperties = entity->getPulseProperties();
|
||||
|
||||
if (_contentType == ContentType::NoContent) {
|
||||
|
|
|
@ -397,7 +397,6 @@ public:
|
|||
QUuid getOwningAvatarIDForProperties() const;
|
||||
|
||||
virtual bool wantsHandControllerPointerEvents() const { return false; }
|
||||
virtual bool wantsKeyboardFocus() const { return false; }
|
||||
virtual void setProxyWindow(QWindow* proxyWindow) {}
|
||||
virtual QObject* getEventHandler() { return nullptr; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue