From e8c780b3b7e438293a270b393e0bfec2565e1dc6 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 14 Aug 2025 16:04:25 +0200 Subject: [PATCH] refactor: re-order widget style tags --- src/config.zig | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/config.zig b/src/config.zig index 94ec3e9..25ff88a 100644 --- a/src/config.zig +++ b/src/config.zig @@ -70,16 +70,16 @@ pub const WidgetType = enum { }; pub const WidgetStyle = enum { - compact, - spacious, - boxed, - double_boxed, - rounded_boxed, - single_double_top_bottom_boxed, - single_double_left_right_boxed, - dotted_boxed, - thick_boxed, - extra_thick_boxed, bars_top_bottom, bars_left_right, + thick_boxed, + extra_thick_boxed, + dotted_boxed, + rounded_boxed, + double_boxed, + single_double_top_bottom_boxed, + single_double_left_right_boxed, + boxed, + spacious, + compact, };