bruvzg
bruvzg
Is it only an issue with popups (e.g., rename / inspector properties), or with any input controls (e.g., script editor)?
I was not able to reproduce it with Gnome /Wayland session on PopOS 22.04.
This should be already fixed.
It definitely should never return NaN, without font it can be 0, but not NaN. So it's either broken font which have nonsensical ascent/descent, or NaN was passed to the...
It's likely non TTF/OTF format font which is supported by freetype, so it is loaded but do not have enough metadata, I'm not sure if we can do check for...
> I've uploaded the misc folder here. [misc.zip](https://github.com/godotengine/godot/files/10934043/misc.zip) As I suspected : `ascent/descent == 0`, `ppm scale == 0` so scaling end up `inf` and mess up glyph sizes as...
> might know more about when NEED_LONG_INT is required No idea, iOS ARM64 is building without it. It't probably was needed is neither `int` not `int64_t` is the same as...
This probably should be reverted since it's based on wrong assumption about prefixes (it's checking for empty arch, but always adding path part of the prefix), a lot of tool...
> This probably should be reverted Or I guess an extra case can be added to the `get_mingw_tool` to keep the cleanup part, something like (not tested): ```diff diff --git...
Currently, if prefix is set to something like `/mingw32`, it will try `/mingw32/bin/i686-w64-mingw32-windres` (usual for cross building) and `/mingw32/bin/windres` (unlikely to be valid), but it might be just `/bin/windres` (usual...