mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Tables: fixed double-clicking on a column from clearing HoveredColumnBorder for a frame.
This commit is contained in:
parent
08606714a3
commit
be1311cfc1
2 changed files with 2 additions and 2 deletions
2
imgui.h
2
imgui.h
|
|
@ -24,7 +24,7 @@
|
|||
// Library Version
|
||||
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
|
||||
#define IMGUI_VERSION "1.90 WIP"
|
||||
#define IMGUI_VERSION_NUM 18994
|
||||
#define IMGUI_VERSION_NUM 18995
|
||||
#define IMGUI_HAS_TABLE
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -1234,7 +1234,7 @@ void ImGui::TableUpdateBorders(ImGuiTable* table)
|
|||
{
|
||||
TableSetColumnWidthAutoSingle(table, column_n);
|
||||
ClearActiveID();
|
||||
held = hovered = false;
|
||||
held = false;
|
||||
}
|
||||
if (held)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue