| 43 | } |
| 44 | |
| 45 | void TextureBrowseControl::onDoModal() |
| 46 | { |
| 47 | MyGUI::IntSize windowSize = mMainWidget->getSize(); |
| 48 | MyGUI::IntSize parentSize = mMainWidget->getParentSize(); |
| 49 | |
| 50 | mMainWidget->setPosition( |
| 51 | (parentSize.width - windowSize.width) / 2, |
| 52 | (parentSize.height - windowSize.height) / 2); |
| 53 | } |
| 54 | |
| 55 | void TextureBrowseControl::onEndModal() |
| 56 | { |
nothing calls this directly
no test coverage detected