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