fixing text_svg

This commit is contained in:
Chris Cochrun 2025-07-03 21:59:52 -05:00
parent bf6add5c67
commit 049e5bd7cc
3 changed files with 30 additions and 28 deletions

View file

@ -7,9 +7,11 @@ This does almost work. There is a clear amount of lag or rather hang up since sw
Actually, what if we just made the svg at load/creation time and stored it in the file system for later, then load the entire songs svg's into memory during the presentation to speed things up? Would that be faster than creating them at on the fly? Is it the creation of them that is slow or the rendering?
** SVG performs badly
** ~SVG performs badly~ JK lolZ!!
Since SVG's apparently run poorly in iced, instead I'll need to see about either creating a new text element, or teaching Iced to render strokes and shadows on text.
Apparently svg was slow due to the lazy widget, which idk why I used in the first place.
* TODO [#C] Make the presenter more modular so things are easier to change.
* TODO [#A] Need to fix tests now that the basic app is working