projects
/
FET_sim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ade12c3
)
Fix switch symbols for opening
author
Lukáš Jiřiště
<gymnazium.jiriste@gmail.com>
Thu, 19 Dec 2024 08:52:25 +0000
(09:52 +0100)
committer
Lukáš Jiřiště
<gymnazium.jiriste@gmail.com>
Thu, 19 Dec 2024 08:52:25 +0000
(09:52 +0100)
I have swapped the vertical and horizontal line.
src/colors.c
patch
|
blob
|
history
diff --git
a/src/colors.c
b/src/colors.c
index 5298d5a195518ad7c59f77ddd8e1e78f7fbaa976..d7be7eb32f9c9c4fff245a51da59df3cb1c24997 100644
(file)
--- 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_
V
LINE;
+ set.open = ACS_
H
LINE;
set.transition = '/';
set.closed = '|';
}
else
{
- set.open = ACS_
H
LINE;
+ set.open = ACS_
V
LINE;
set.transition = '\\';
set.closed = '-';
}