Kale Kundert

Results 60 comments of Kale Kundert

That's a good suggestion, and this is definitely the place for it. I'll see if I can get something up this weekend.

It's called the `Form` widget. You can find a brief example [here](https://glooey.readthedocs.io/en/latest/more_useful_widgets.html#form-text-input) and the API documentation (which is admittedly pretty incomplete) [here](https://glooey.readthedocs.io/en/latest/api/glooey.text.html).

Glad you figured it out. Let me know if you have any other questions.

Hmm, I'm not sure what this issue is off hand. Did you attach the form to the GUI before calling `get_text()`? If not, that could be the problem. Otherwise, if...

Hmmm, that's bizarre. It shouldn't be necessary for `Form` to implement `do_regroup_children()`, because it uses a `Stack` to organize the its background and label widgets, and the stack should take...

I'll have to think more closely about how/whether to do this, but a quick comment I can make is that you can get the layout described above by nesting a...

Thanks again for finding a bug and coming up with a really simple example. This is kinda a note to myself, but I think I found the problem. First, when...

I agree with your intuition, but the problem is that the `on_mouse_leave` event currently requires mouse coordinates, which are not known at the times when widgets are being removed. (Mouse...

Definitely not annoying! I appreciate the discussion. The way it works in the usual case is that when the GUI gets a mouse motion event, it works out which widgets...

Glooey doesn't have this feature yet; see #45 which is asking for the same thing. For now you can get the same effect by mixing `HBox` and `VBox`, but it's...