mirror of
https://github.com/overte-org/overte.git
synced 2025-08-13 06:18:39 +02:00
web-entities don't yet work right on Linux
This commit is contained in:
parent
2425baf6e6
commit
c9df446879
1 changed files with 5 additions and 0 deletions
|
@ -51,6 +51,11 @@ RenderableWebEntityItem::~RenderableWebEntityItem() {
|
|||
}
|
||||
|
||||
bool RenderableWebEntityItem::buildWebSurface(EntityTreeRenderer* renderer) {
|
||||
#ifdef defined(Q_OS_LINUX)
|
||||
// these don't seem to work on Linux
|
||||
return false;
|
||||
#endif
|
||||
|
||||
if (_currentWebCount >= MAX_CONCURRENT_WEB_VIEWS) {
|
||||
qWarning() << "Too many concurrent web views to create new view";
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue