Results 469 comments of Malcolm Smith

Thanks for the report. We're currently working on this in #2435, but I'll leave this issue open for ... visibility.

The documentation of these settings is a little unclear, but I don't think we want `continue-on-error` here. That would cause the workflow to always be considered a success regardless of...

I think we should deliver the event if and only if the new size is actually available for rendering the window content. Whether this happens continuously during the resize, or...

> if I set a background color on the parent like: > > ``` > toga.Box( > style=Pack(flex=1, background_color="#87CEFA"), > children=[ > toga.Selection( > items=["Alice", "Bob", "Charlie"], > ) >...

@MuhammadMouradG: We recommend you install pre-commit into your own environment as shown [here](https://toga.readthedocs.io/en/latest/how-to/contribute-code.html), so you won't need to wait for CI to run it.

It looks like you're relying on GitHub to run flake8 for you. You'll save a lot of time if you set up pre-commit in your development environment, by following the...

It could work something like this: ```py _lazy_imports = {} __all__ = [] def lazy_import(mod_name, *names): for name in names: _lazy_imports[name] = mod_name __all__.append(name) def __getattr__(name): # Look up name...

Probably not, because we recently added some code to base.py to set a default intrinsic width and height, so widgets only need to override that if they have more specific...