max_row_width = function(t) local max = 0 for name in pairs(t) do local curr = App.width(name) if max < curr then max = curr end end return max end