From 01694a4391af1e76969b777b1a8b8517c618fe0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Ji=C5=99i=C5=A1t=C4=9B?= Date: Thu, 19 Dec 2024 09:52:25 +0100 Subject: [PATCH] Fix switch symbols for opening I have swapped the vertical and horizontal line. --- src/colors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/colors.c b/src/colors.c index 5298d5a..d7be7eb 100644 --- a/src/colors.c +++ b/src/colors.c @@ -65,13 +65,13 @@ static t_switch_symbol_set get_switch_set(t_orientation orientation) if (orientation == UP || orientation == DOWN) { - set.open = ACS_VLINE; + set.open = ACS_HLINE; set.transition = '/'; set.closed = '|'; } else { - set.open = ACS_HLINE; + set.open = ACS_VLINE; set.transition = '\\'; set.closed = '-'; } -- 2.30.2