Skip to content

Commit b21a3e0

Browse files
committed
change: rounded table will less row seperator
1 parent a6dc57b commit b21a3e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub fn list_specific_trash(seconds: i64) -> Result<(), trash::Error> {
4949
}
5050
}
5151
let mut table = Table::new(&list);
52-
table.with(Style::modern());
52+
table.with(Style::rounded());
5353
table.modify(Columns::first(), Alignment::right());
5454
println!("{table}");
5555
Ok(())
@@ -73,7 +73,7 @@ pub fn list_trash() {
7373
))
7474
}
7575
let mut table = Table::new(&list);
76-
table.with(Style::modern());
76+
table.with(Style::rounded());
7777
table.modify(Columns::first(), Alignment::right());
7878
println!("{table}");
7979
}

0 commit comments

Comments
 (0)