inkyblackness / imgui-go

Go wrapper library for "Dear ImGui" (https://github.com/ocornut/imgui)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IsWindowFocused()

JetSetIlly opened this issue · comments

iggIsWindowFocused() in imguiWrapper.cpp (line 584) is incorrectly calling IsWindowHovered()

IggBool iggIsWindowFocused(int flags)
{
return ImGui::IsWindowHovered(flags) ? 1 : 0;
}

Hey, @JetSetIlly - thank you for noticing!
This has been fixed and v2.1.1 was released just now.