Cedric BAIL
Cedric BAIL
In the case of the main return key, I get `Return` and in the case of the numpad I get `KP_Enter`. In both case, shell through ssh is not interpreting...
I think I figured out the issue. We need to detect the CRLF mode of the terminal like terminology does: https://github.com/borisfaure/terminology/blob/master/src/bin/termptyesc.c#L381 and then based on that information emit `\r\n` when...
I looked at it a bit more and it is the escape for private mode which is to simplistic and we are missing a lot there compared to terminology code....
I can confirm that this bug is still happening. I used @JLMorange patch (after manual correction) to try to get things working, but couldn't figure the right set of value...
The problem seems to be that on ARM we are picking GLES, while we should pick GL for Mac M* hardware when inside a docker container.
One of the project to keep an eye on is https://github.com/AccessKit/accesskit which even if it does introduce a new non go dependencies would make it more doable than doing it...
@dweymouth are you setting a font for your app too or using the default?
I think that trying to use a polling interface is good for reactivity/low latency use case, but if energy matters it would be best to wait and block until we...
I wonder if there is a possible different way to do this on MacOS. The goal here is to get a notification when the setting are changed. On Linux, I...
> The settings change we are looking for is Fyne settings... so if we use dbus or X signals we would need a service of some sort running to do...