MultiSelect: added Changelog for the feature. Removed IMGUI_HAS_MULTI_SELECT.

This commit is contained in:
ocornut
2024-07-18 18:19:22 +02:00
parent 2688562fd2
commit 02c31a8dd1
3 changed files with 53 additions and 8 deletions
-4
View File
@@ -1741,8 +1741,6 @@ struct ImGuiBoxSelectState
// We always assume that -1 is an invalid value (which works for indices and pointers)
#define ImGuiSelectionUserData_Invalid ((ImGuiSelectionUserData)-1)
#ifdef IMGUI_HAS_MULTI_SELECT
// Temporary storage for multi-select
struct IMGUI_API ImGuiMultiSelectTempData
{
@@ -1783,8 +1781,6 @@ struct IMGUI_API ImGuiMultiSelectState
ImGuiMultiSelectState() { Window = NULL; ID = 0; LastFrameActive = LastSelectionSize = 0; RangeSelected = NavIdSelected = -1; RangeSrcItem = NavIdItem = ImGuiSelectionUserData_Invalid; }
};
#endif // #ifdef IMGUI_HAS_MULTI_SELECT
//-----------------------------------------------------------------------------
// [SECTION] Docking support
//-----------------------------------------------------------------------------