From fc7ca8318b89410070d8ccd12b03b3a983a50501 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Mon, 8 Sep 2025 18:44:15 -0300 Subject: [PATCH] style: Use solid inner borders for tables --- src/modes/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/common.rs b/src/modes/common.rs index 9690021..6bbd7a2 100644 --- a/src/modes/common.rs +++ b/src/modes/common.rs @@ -148,7 +148,7 @@ pub fn create_table(use_styling: bool) -> Table { if use_styling { table .load_preset(comfy_table::presets::UTF8_FULL) - .apply_modifier(comfy_table::modifiers::UTF8_ROUND_CORNERS); + .apply_modifier(comfy_table::modifiers::UTF8_SOLID_INNER_BORDERS); } else { table.load_preset(comfy_table::presets::NOTHING); }