From 1ddee5be4a8c68c74f382941a5825434c27b4ea9 Mon Sep 17 00:00:00 2001 From: omar Date: Mon, 22 Feb 2021 14:01:21 +0100 Subject: [PATCH] Updated Tips (markdown) --- Tips.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Tips.md b/Tips.md index 216c095..f4d014b 100644 --- a/Tips.md +++ b/Tips.md @@ -11,6 +11,15 @@ They will help you understand how Dear ImGui works, and can help you diagnose pr ---- +### Use the Item Picker! + +The Item Picker will allow you to pick an item with the mouse and have Dear ImGui break within the call-stack of that item. This is useful if you have large UI / codebase and you would to easily find out where some UI item is emitted. +You can find it in _Metrics>Tools>Item Picker_. Also see [#2673](https://github.com/ocornut/imgui/issues/2673). + +![Item Picker](https://user-images.githubusercontent.com/8225057/61412736-7d2e5b80-a89e-11e9-9bb3-54c097025abe.png) + +---- + ### Using Begin/BeginChild - You can omit `Begin()`/`End()`, widgets will be created into an implicit "Debug" window.