Jason C

Results 66 comments of Jason C

https://github.com/ocornut/imgui/issues/6176 mentions `io.FontGlobalScale`, but the FAQ does not mention it. Is there a reason not to use it? I can't seem to find any documentation for it, either, although I...

I seem to be getting decent results by doing this (GLFW + Python, but you get the gist): ```python scale = glfw.get_window_content_scale(window) # returns (xscale, yscale) io.font_global_scale = max(scale) #...

> You can also call GetStyle().ScaleAllSizes(factor) to scale spacings and paddings similarly. Darn, it seems pyimgui [doesn't expose this function](https://github.com/pyimgui/pyimgui/issues/359); what is the simplest way to approximate it?

@PathogenDavid Thanks! If anybody is interested, here is a Python (pyimgui) implementation, it seems to be working very well: ```python def _imgui_scale_all_sizes (style, hscale: float, vscale: float) -> None: """pyimgui...

Thanks, I will look into this as soon as I can and see how far I get.

Thanks. Yes please make it a feature request. It would be great, especially for hand landmarking. Dlib's CNN tracker is a good alternative for face detection, and there's a good...