uglycoyote

Results 25 comments of uglycoyote

@glitchwizard For a slightly cleaner approach than hard-coding the specific IP in to the launch.json, here's what I'm currently doing: Line in my .zshrc startup script (.bashrc for most people?),...

I tried installing under Powershell 7 today, but just the initial `Import-Module` paused for about 2 minutes and emitted an error similar to the one above, with `Cannot insert duplicate...

Thanks for your reply! SetKeyboardFocusHere sounds like it forcibly changes the focus, which is what I said I want, but the next question is how to test when it needs...

Update... rather than using `SetKeyboardFocusHere` I found that the following works: ``` if ( !ImGui::IsAnyItemFocused() ) { GImGui->NavId = GImGui->CurrentWindow->DC.LastItemId; } ``` along with explicitly setting `GImGui->NavId = 0` when...

Yes, sorry I just didn't want to burden you when I had found a workable solution. Though my solution is not ideal in that ImGui isn't exposing an obvious way...