mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 17:24:08 +02:00
Merge pull request #6119 from Atlante45/baseball
Fix autoresizing log spam
This commit is contained in:
commit
14aab4871d
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ private:
|
|||
QStringList _originalTextures;
|
||||
bool _originalTexturesRead = false;
|
||||
QVector<QVector<glm::vec3>> _points;
|
||||
bool _dimensionsInitialized = false;
|
||||
bool _dimensionsInitialized = true;
|
||||
|
||||
render::ItemID _myMetaItem;
|
||||
};
|
||||
|
|
|
@ -270,7 +270,7 @@ private:
|
|||
bool _glowLevelChanged;
|
||||
bool _localRenderAlphaChanged;
|
||||
bool _defaultSettings;
|
||||
bool _dimensionsInitialized = false; // Only true if creating an entity localy with no dimensions properties
|
||||
bool _dimensionsInitialized = true; // Only false if creating an entity localy with no dimensions properties
|
||||
|
||||
// NOTE: The following are pseudo client only properties. They are only used in clients which can access
|
||||
// properties of model geometry. But these properties are not serialized like other properties.
|
||||
|
|
Loading…
Reference in a new issue