fix web entities not accepting keyboard focus

This commit is contained in:
HifiExperiments 2024-10-24 13:13:06 -07:00
parent a2208725e0
commit f1ed8ef1dd
2 changed files with 1 additions and 2 deletions

View file

@ -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) {

View file

@ -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; }