Charles Whittington

Results 90 comments of Charles Whittington

The README links to nonexistant documentation at https://invent-framework.readthedocs.io/ Should that be https://invent-framework.github.io/ ? I don't know if those docs are current.

Interestingly, I can't reproduce this on a Mac. This makes me suspect it's in the Windows backend specifically.

I can replicate this on macOS 14.7.3. Here's a more minimal (if less visually interesting) reproduction: ```python import toga class FullScreenResizeIssue(toga.App): def startup(self): self.indicator = toga.Label("1") self.main_window = toga.MainWindow() self.main_window.content...

Another option would be to issue a *warning* rather than an error. That way developers are notified of what's going on (or, I suppose, *not* going on), but further code...

@pfaustAPH Can Orca read otherwise non-interactive text labels in other native macOS apps?

Heads up that this and #3569 will inevitably conflict, so whichever gets merged second will have some conflicts to resolve. It looks like all of your changes to the backends...

Do other style properties work on Tree on your platform? Font settings, text alignment, dimensions?

Related: - #2896

> It might even be something where we can publish an abstract base class that sets up all the infrastructure, and does everything _except_ describe which impl will be instantiated...