I use a tab with three tab items and the property align = "all". When I resize the window and switch to another tabitem, it has the old width and height. I can see some widgets from the other tabitem. It seems that the align property doesn't update all tabitems.
The example in the documentation ist worng: local widget = ui.Tab(win, "I'm a bottom aligned Tab :)", 25, 25)
should be something like: local widget = ui.Tab(win, {"Item 1", "Item 2", "Item 3"}, 25, 25)
.