From cf064f8e0db77f008572c502d599791ac1e3a911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Tue, 20 Aug 2024 10:58:07 +0200 Subject: [PATCH] add missing row height for accounts table --- src/account/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/account/mod.rs b/src/account/mod.rs index 4b13684..d058a05 100644 --- a/src/account/mod.rs +++ b/src/account/mod.rs @@ -33,6 +33,7 @@ impl Account { pub fn to_row(&self, config: &ListAccountsTableConfig) -> Row { let mut row = Row::new(); + row.max_height(1); row.add_cell(Cell::new(&self.name).fg(config.name_color())); row.add_cell(Cell::new(&self.backend).fg(config.backends_color()));