two things I can see that may be at fault here. first one, ImGui.SetKeyboardFocusHere isn't needed f
two things I can see that may be at fault here. first one, ImGui.SetKeyboardFocusHere isn't needed for an input text at all, since the keyboard focus is already there when you click on it (the if statement is called whenever text is entered, or when the enter key is pressed if you set that flag)
and also, unless you intend for there to only be numbers, the
and also, unless you intend for there to only be numbers, the
CharsDecimal flag will limit you to just 0-9 and . (and maybe _) which may be the source of the issue if you want text (which i would imagine you do for a console)