| 157 | }; |
| 158 | |
| 159 | void WindowTooltipReset(const ScreenCoordsXY& screenCoords) |
| 160 | { |
| 161 | gTooltipCursor = screenCoords; |
| 162 | gTooltipCloseTimeout = 0; |
| 163 | gTooltipWidget.windowClassification = WindowClass::null; |
| 164 | InputSetState(InputState::normal); |
| 165 | gInputFlags.unset(InputFlag::leftMousePressed); |
| 166 | } |
| 167 | |
| 168 | void WindowTooltipShow(const StringWithArgs& message, ScreenCoordsXY screenCoords) |
| 169 | { |
no test coverage detected