BREAKING
Old(er) fluent style of adding widgets to a row won't work anymore.
So the following won't work:
row.add(widget).column_span(2).add(another_widget)Instead, you'll need to add widgets to a row in separate lines:
row.add(widget).column_span(2)
row.add(another_widget)Row.add()method now returns the added cell instead of the row itself- Methods
column_spanandrow_spanmoved fromRowtoCelland renamed toset_column_spanandset_row_spanrespectively
What's Changed
Full Changelog: 0.5.1...0.6.0