I think the task for today will be to implement a custom tooltip.
Perhaps I could also start working on "tab search". Basically, click on the selected tab, and it will then show an overlay that allows the user to quickly search and open a different file in the same tab.
Yesterday I fixed the text object in the canvas scaling in a way that was causing pixelation. The problem was that I used the `.scaleEffect`, so I replaced that with a more sophisticated approach where I am scaling the font size instead when zooming in and out.
The reason why I was using a `.scaleEffect` was because I had issues with text wrapping when I changed the font size. This is why I opted for a simpler approach - just as a temporary solution.
But it seems like I finally found a solution to the word wrapping issue... #dev
📝 8333e11a…