Merge prevent crash when switching cols from fernando #997

Fernando López Guevara (1):
      fix(columns): prevent crash when switching to account with no columns
This commit is contained in:
William Casarin
2025-07-23 09:10:15 -07:00

View File

@@ -191,6 +191,9 @@ impl Columns {
#[inline]
pub fn column_mut(&mut self, ind: usize) -> &mut Column {
if self.columns.is_empty() {
self.new_column_picker();
}
&mut self.columns[ind]
}