Joel de Guzman
Joel de Guzman
> The overflow seems to happen on master branch as well. > It seems to only reproduce when the `input_box` is inside a `limit` with `view_limits.max.x < 40`. > I...
> Same bug for succession of 'f' and 'i' chars. So that may indeed be related to ligatures ! Indeed!
BTW, do you mind filing another issue for the overflow issue?
> Shouldn't this issue be pinned? Done.
Makes sense! I think we can probably put that in support. I do not have answers now, but I am pretty sure it will become evident once we implement it....
> `host()` should return the handle directly like on the Windows version. `host()` is platform specific. There is no need for consistency as long as you can get what you...
No. You should not do it that way. The struct is opaque for an obvious reason: encapsulation and data hiding. Clients should NEVER touch the data in that struct. Handles...
It is usable, but not as you intended it would be. In general it is simply used as an opaque handle that is passed along to and from the implementation....
> OK, I gave a look to another UI framework for reference and at least on wx there is a [GetHandle()](https://docs.wxwidgets.org/3.0/classwx_window.html#a185e6cd7065367b552748cb722651b27) member function that does what I mean. Sure. That's...
> defining the contents of handles is a bad design choice Which is akin to making your class member variables public.