Drew Weymouth
Drew Weymouth
> IMO the best solution for gapless playback I'd say that using a client that supports gapless is the best solution :) I'd think proper support of Navidrome for cue...
> you can always fall back to playing the single file. How would this work for Subsonic clients? For Navidrome's web client it could expose a new property where the...
Has RTL support landed upstream in go-text? This could be a good ticket to move into the i18n work plan
I got some context from a Supersonic user on how RTL support should work with mixed-script strings. Here is a screenshot from a web UI showing proper RTL in a...
Agree that it might be tight to get in same release, though part of it doesn't require localization I assume? The mixed-string case I described above - it seems that...
Closing as duplicate of #90
It seems to receive a focused callback in this case (tested by adding a printf to [`processFocused`](https://github.com/fyne-io/fyne/blob/018a2e14545aa1e854bea3b1d590be272ed62080/internal/driver/glfw/window.go#L792)). Maybe here you could add a check to restart the run loop if...
Window.Show is idempotent, no problem calling it from within the processFocused callback? I may try this tomorrow and see how it goes.
This does seem to be fixed by just adding ```go go w.doShow() ``` to the beginning of the `if focus` case in [`window.processFocused`](https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window.go#L792) @andydotxyz do you see any issues with...
I've been thinking about how tooltips could be designed into the Fyne API. I think a lot of apps would really benefit from them, mine included, but building out a...