| 2356 | |
| 2357 | |
| 2358 | void ScriptCreatedComponentWrappers::PanelWrapper::cursorChanged(PanelWrapper& p, ScriptingApi::Content::ScriptPanel::MouseCursorInfo newInfo) |
| 2359 | { |
| 2360 | MouseCursor cursor; |
| 2361 | |
| 2362 | auto panel = p.getScriptComponent(); |
| 2363 | auto bp = p.getComponent(); |
| 2364 | |
| 2365 | if (p.setMouseCursorFromParentPanel(panel, cursor)) |
| 2366 | { |
| 2367 | bp->setMouseCursor(cursor); |
| 2368 | } |
| 2369 | } |
| 2370 | |
| 2371 | void ScriptCreatedComponentWrappers::PanelWrapper::animationChanged() |
| 2372 | { |
nothing calls this directly
no test coverage detected