| 3413 | } |
| 3414 | |
| 3415 | void Key_RefreshFileActors() |
| 3416 | { |
| 3417 | vector<BumpObject *> actors = sel->getBumpObjects(); |
| 3418 | for (int i = 0; i < actors.size(); ++i) |
| 3419 | { |
| 3420 | if (actors[i]->getObjectType() == ObjectType(BumpActor, FileSystem)) |
| 3421 | ((FileSystemActor *)actors[i])->refreshThumbnail(); |
| 3422 | } |
| 3423 | |
| 3424 | if (!actors.empty()) |
| 3425 | printUnique("Key_RefreshFileActors", BtUtilStr->getString("RefreshDesktop")); |
| 3426 | } |
| 3427 | |
| 3428 | void Key_StartAutomatedDemo() |
| 3429 | { |
nothing calls this directly
no test coverage detected