TomJGooding

Results 284 comments of TomJGooding

Good work Dave! I'll be interested to see how you approach the `Changed` messages as I wasn't sure how to handle these when I had a quick attempt at this.

> (Hey Tom, where's the compound widget that inherits from `Static`? I can't find it!) Do you mean in the tutorial? https://github.com/Textualize/textual/blob/95f0c39106e0a53d028e36730a06747eeefff8c0/docs/examples/tutorial/stopwatch02.py#L10-L18 I think what might be confusing some people...

Ah no, sorry to "confound this confusion" (clearly my brain wasn't fully engaged when I wrote that!)

For anyone who might stumble across this issue, you can workaround this by adding a min width/height to your widgets, for example: ```python class LabelLoadingTestApp(App[None]): CSS = """ Static, Label...

I'm not sure why I closed this. Something in the docs or FAQ I still think would be useful, even if the folks who try to run TUIs in VSCode...

I might be misunderstanding what you mean by a "single character wide TextArea" but I can't seem to reproduce this?

This seems a simple enough fix that I could help (if wanted!). But I can't seem reproduce this in my editor, so I just wanted to check where you've seen/tested...

> I'm not sure if this is a side effect of not having the widget displayed (no space is calculated for it so it doesn't know what sizes to use...

I agree some sort of "autocomplete" widget would be extremely useful and something I've seen often requested. For example my own issue here: - https://github.com/Textualize/textual/issues/3362 If someone does want to...

I think this should be a new widget. A simple dropdown list is very different from a text input enhanced by suggested options. Not to mention the code for the...