| 95 | } |
| 96 | |
| 97 | void SpatialControlWindow::processZoomInButton() |
| 98 | { |
| 99 | if (AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_SEARCH_PLUS))) { |
| 100 | Viewport::get().setZoomFactor(Viewport::get().getZoomFactor() * 2); |
| 101 | } |
| 102 | AlienImGui::Tooltip("Zoom in"); |
| 103 | } |
| 104 | |
| 105 | void SpatialControlWindow::processZoomOutButton() |
| 106 | { |
nothing calls this directly
no test coverage detected