Christian Fillion

Results 27 comments of Christian Fillion

> I believe the issue is somewhere in my DX11 creation, I've searched everywhere and can't figure it out. Even tried re-writing it in DX9 to no avail. I've just...

> does this work even without steamos itself having japanese locale enabled? Locale files can be installed [anywhere](https://github.com/ValveSoftware/SteamOS/issues/794#issuecomment-1226664940), they don't need to be system-wide.

That's issue #6993, unrelated to transparency. Quick hack (for unpached imgui + didn't test how it interacts with `DockSpace` + might be better ways...): ```diff diff --git a/imgui.cpp b/imgui.cpp index...

This can be done by calling `ImGui::ClearActiveID` (defined in imgui_internal.h) when none of your ImGui platform windows have focus. For example adding this to imgui_impl_win32's message handler: ```cpp case WM_KILLFOCUS:...

The built-in font is made of 13px bitmaps. Scaling it to anything but an integer will look blurry. Try loading a vector font at the appropriate scaled size. https://github.com/ocornut/imgui/blob/master/docs/FONTS.md

> Who is supposed to set io.WantCaptureKeyboard? Active text input fields, or via `ImGui::SetNextFrameWantCaptureKeyboard(true)`. See Demo > Inputs & Focus > WantCapture override.

The inner clipping rectangle of all windows (child or not) is always larger than the padding (by half). The actual padding is the same on the left and right sides,...

The label width (and item spacing between the combo and the label) gets added to the item's total width, which then keeps pushing the window's content size. Disable the label...

`data->UserData` is the string in your snippet, so if you don't need to access other members of your object the above is fine. Just make `ResizeCallback` static or non-member. Otherwise:...

Replacing `cursor.pcf` to use `monospace` in ~/.config/FreeCAD/user.cfg under `` seems to workaround the issue for me. The log is no longer displayed in a huge font, and FreeCAD no longer...