| 15214 | } |
| 15215 | |
| 15216 | void ImGui::EndDragDropTarget() |
| 15217 | { |
| 15218 | ImGuiContext& g = *GImGui; |
| 15219 | IM_ASSERT(g.DragDropActive); |
| 15220 | IM_ASSERT(g.DragDropWithinTarget); |
| 15221 | g.DragDropWithinTarget = false; |
| 15222 | |
| 15223 | // Clear drag and drop state payload right after delivery |
| 15224 | if (g.DragDropPayload.Delivery) |
| 15225 | ClearDragDrop(); |
| 15226 | } |
| 15227 | |
| 15228 | //----------------------------------------------------------------------------- |
| 15229 | // [SECTION] LOGGING/CAPTURING |
nothing calls this directly
no outgoing calls
no test coverage detected