| 39 | } |
| 40 | |
| 41 | void FocusInfoControl::Command_FocusVisible(const MyGUI::UString& _commandName, bool& _result) |
| 42 | { |
| 43 | getRoot()->setVisible(!getRoot()->getVisible()); |
| 44 | SettingsManager::getInstance().setValue("Controls/FocusInfoControl/Visible", getRoot()->getVisible()); |
| 45 | |
| 46 | mMouseView->setVisible(false); |
| 47 | mKeyView->setVisible(false); |
| 48 | |
| 49 | _result = true; |
| 50 | } |
| 51 | |
| 52 | void FocusInfoControl::notifyFrameStart(float _time) |
| 53 | { |
nothing calls this directly
no test coverage detected