| 4880 | } |
| 4881 | |
| 4882 | void MapInputReverse(ImPlotInputMap* dst) { |
| 4883 | ImPlotInputMap& map = dst ? *dst : GetInputMap(); |
| 4884 | map.Pan = ImGuiMouseButton_Right; |
| 4885 | map.PanMod = ImGuiMod_None; |
| 4886 | map.Fit = ImGuiMouseButton_Left; |
| 4887 | map.Menu = ImGuiMouseButton_Right; |
| 4888 | map.Select = ImGuiMouseButton_Left; |
| 4889 | map.SelectMod = ImGuiMod_None; |
| 4890 | map.SelectCancel = ImGuiMouseButton_Right; |
| 4891 | map.SelectHorzMod = ImGuiMod_Alt; |
| 4892 | map.SelectVertMod = ImGuiMod_Shift; |
| 4893 | map.OverrideMod = ImGuiMod_Ctrl; |
| 4894 | map.ZoomMod = ImGuiMod_None; |
| 4895 | map.ZoomRate = 0.1f; |
| 4896 | } |
| 4897 | |
| 4898 | //----------------------------------------------------------------------------- |
| 4899 | // [Section] Miscellaneous |
no outgoing calls
no test coverage detected