Tables: Internals: Renaming, tweaks preparing ahead for trickier changes (should be all no-op).

This commit is contained in:
ocornut
2021-01-15 10:36:20 +01:00
parent 9e281c12a8
commit 3edfc042ff
3 changed files with 14 additions and 15 deletions

View File

@ -6101,7 +6101,8 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
// This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope.
// Maybe we can support CTRL+C on every element?
/*
if (g.ActiveId == move_id)
//if (g.NavWindow == window && g.ActiveId == 0)
if (g.ActiveId == window->MoveId)
if (g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_C))
LogToClipboard();
*/