| 103 | } |
| 104 | |
| 105 | void SpatialControlWindow::processZoomOutButton() |
| 106 | { |
| 107 | if (AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_SEARCH_MINUS))) { |
| 108 | Viewport::get().setZoomFactor(Viewport::get().getZoomFactor() / 2); |
| 109 | } |
| 110 | AlienImGui::Tooltip("Zoom out"); |
| 111 | } |
| 112 | |
| 113 | void SpatialControlWindow::processCenterButton() |
| 114 | { |
nothing calls this directly
no test coverage detected