You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is important for scrolling as otherwise items off screen in child windows can't be found as the current work around of serarching via **/name doesn't work.
This has allowed me to do this to scroll the item onto screen in the test framework:
BeginChildEx cant be found because the child window name contains a '/'. If I change these lines in BegindChildEx:
to
i.e replace the slash with an underscore then ImGuiTestContext::ItemInfo can find the child window and doesn't chop off the name_id part.
ImGuiTestItemInfo ImGuiTestContext::ItemInfo(ImGuiTestRef ref, ImGuiTestOpFlags flags)
This is important for scrolling as otherwise items off screen in child windows can't be found as the current work around of serarching via **/name doesn't work.
This has allowed me to do this to scroll the item onto screen in the test framework:
There is also a line in
ImGuiTestItemInfo ImGuiTestContext::WindowInfo(ImGuiTestRef ref, ImGuiTestOpFlags flags)
that needs to be changed here:
The text was updated successfully, but these errors were encountered: