| 57 | } |
| 58 | |
| 59 | void ChildOverlay::setCaption(const Ogre::String& caption) |
| 60 | { |
| 61 | if (caption != mCaption) |
| 62 | { |
| 63 | mCaption = caption; |
| 64 | mOverlayText->setCaption(mCaption); |
| 65 | computeTextArea(); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | void ChildOverlay::forceTextArea(Ogre::Real textWidth, Ogre::Real textHeight) |
| 70 | { |
no test coverage detected