kxgames / glooey

An object-oriented GUI library for pyglet.
MIT License
91 stars 6 forks source link

columnspan in glooey #49

Open akshaypatel1811 opened 3 years ago

akshaypatel1811 commented 3 years ago

Hi @kalekundert , @wkentaro ,

tkinter has a functionality called columnspan in grid where we can make cell equivalent to some combination of column. The main purpose of this functionality is to put 2 or more button under the same image or video. I couldn't find this functionality in glooey. Is there a way that I can do this in glooey?

Thank you, Akshay

kalekundert commented 3 years ago

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 not as convenient. Most likely I won't get around to adding this feature for a while, but I'd be happy to get a PR.