From d578b532c828037361944bf9a904ffa8e42c0203 Mon Sep 17 00:00:00 2001 From: omar Date: Sat, 12 Oct 2019 23:58:18 +0200 Subject: [PATCH] Tips --- Tips.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tips.md b/Tips.md index 44293a6..946202f 100644 --- a/Tips.md +++ b/Tips.md @@ -51,6 +51,8 @@ ImGui::PlotLines("LeftToeBase y", &all_sampled_joints[skel.getBoneIndex("LeftToe ### Use C++11 lambas with Combo/ListBox/Plot functions +_Update: Since 1.53 you can use `BeginCombo()/EndCombo()` and submit items yourself, which is more adequate than using Combo with a function._ + ```cpp void SelectBoneByName(const char* label, int* bone_idx, const Skeleton* skeleton) {