MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / BeginTooltipHidden

Method BeginTooltipHidden

include/imgui/imgui.cpp:14853–14859  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14851}
14852
14853bool 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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected