| 856 | /* --- Zoom in button --- */ |
| 857 | |
| 858 | static CallBackFunction ToolbarZoomInClick(Window *w) |
| 859 | { |
| 860 | if (DoZoomInOutWindow(ZOOM_IN, GetMainWindow())) { |
| 861 | w->HandleButtonClick((_game_mode == GM_EDITOR) ? (WidgetID)WID_TE_ZOOM_IN : (WidgetID)WID_TN_ZOOM_IN); |
| 862 | } |
| 863 | return CBF_NONE; |
| 864 | } |
| 865 | |
| 866 | /* --- Zoom out button --- */ |
| 867 |
no test coverage detected