| 352 | } |
| 353 | |
| 354 | void Window::setVisible(bool _visible) |
| 355 | { |
| 356 | if (mAnimateSmooth) |
| 357 | { |
| 358 | ControllerManager::getInstance().removeItem(this); |
| 359 | setAlpha(getAlphaVisible()); |
| 360 | setEnabledSilent(true); |
| 361 | mAnimateSmooth = false; |
| 362 | } |
| 363 | |
| 364 | Base::setVisible(_visible); |
| 365 | } |
| 366 | |
| 367 | float Window::getAlphaVisible() const |
| 368 | { |
nothing calls this directly
no test coverage detected