Internals: Tooltips: renamed internal flags (expecting to expose later when we publish priority stuff).

This commit is contained in:
ocornut
2023-06-16 13:28:54 +02:00
parent 89d3dabf2e
commit 15d74bad1d
3 changed files with 5 additions and 5 deletions

View File

@ -927,7 +927,7 @@ enum ImGuiTextFlags_
enum ImGuiTooltipFlags_
{
ImGuiTooltipFlags_None = 0,
ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0, // Override will clear/ignore previously submitted tooltip (defaults to append)
ImGuiTooltipFlags_OverridePrevious = 1 << 1, // Clear/ignore previously submitted tooltip (defaults to append)
};
// FIXME: this is in development, not exposed/functional as a generic feature yet.