| 14851 | } |
| 14852 | |
| 14853 | bool ImGui::BeginTooltipHidden() |
| 14854 | { |
| 14855 | ImGuiContext& g = *GImGui; |
| 14856 | bool ret = Begin("##Tooltip_Hidden", NULL, ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize); |
| 14857 | SetWindowHiddenAndSkipItemsForCurrentFrame(g.CurrentWindow); |
| 14858 | return ret; |
| 14859 | } |
| 14860 | |
| 14861 | // When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSource() |
| 14862 | // If the item has an identifier: |
nothing calls this directly
no outgoing calls
no test coverage detected