Andrea

Results 261 comments of Andrea

the subnet mask is .240 not .255 172.18.88.* is in the networks defined by the IP+mask

https://github.com/genotrance/px/blob/faaa57c2e7bd06f1bc502e8a1d63b6911a667c27/px/main.py#L412-L417 this function will return the hostname which is 172.18.80.1, but it knows nothing about the local network behind it. is there a python way to extract the subnet mask?

The difference between "apps" and "VMs" is probably a bit blurred, especially when the doc says ```This allows local apps as well as VM or container apps to use Px...

The error is displayed when a HD is inserted as a Floppy. What are you clicking exactly to cause it?

Yes, that does it and the right place to put it seems to be ``` if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) { ImGui::SetNextFrameWantCaptureKeyboard(true); //

Don't know if I should open a new issue or continue here. This is about selecting widgets using `TAB`. I see it is already enable for `InputText` and this can...

Thank you for the explanation. I was not aware of `Shortcut`, nor `KeyOwner`. I see them in `imgui_internal.h`. I will look to see if I understand them, but I fear...

Is there a chance that this PR is merged? Should I add something more?

>“It's hard to trust a PR if you don't put the effort of understanding why we normally need the capture on other systems, in order to decide what is actually...

I have tried 2 examples: example_glfw_opengl3 and example_sdl2_opengl3. I put a break point https://github.com/ocornut/imgui/blob/3733b5064e1820dc8517fedba2b34bfbdef569ab/imgui_demo.cpp#L1662C28-L1662C28 With glfw I can use the mouse in VSCode, but with SDL2 I cannot. I used...