mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-10 16:27:22 +02:00
fix Ubuntu build
This commit is contained in:
parent
e964741e30
commit
76ae60c5ca
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ TextOverlay* TextOverlay::createClone() {
|
||||||
|
|
||||||
void TextOverlay::writeToClone(TextOverlay* clone) {
|
void TextOverlay::writeToClone(TextOverlay* clone) {
|
||||||
Overlay2D::writeToClone(clone);
|
Overlay2D::writeToClone(clone);
|
||||||
clone->_text = QString::QString(_text);
|
clone->_text = _text;
|
||||||
clone->_backgroundColor = _backgroundColor;
|
clone->_backgroundColor = _backgroundColor;
|
||||||
clone->_leftMargin = _leftMargin;
|
clone->_leftMargin = _leftMargin;
|
||||||
clone->_topMargin = _topMargin;
|
clone->_topMargin = _topMargin;
|
||||||
|
|
Loading…
Reference in a new issue