diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-01-31 14:06:26 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-01-31 14:09:27 +0100 |
commit | e91f32f2b58eda31fa8d8206ce9d0a8aef52ad13 (patch) | |
tree | 42ba81598e3a9432c4a0b783809c3032d916bef0 /src/libutil/util.hh | |
parent | 678301072f05b650dc15c5edb4c25f08f0d6cace (diff) |
Use light box drawing symbols
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 5d44b92c3..320590836 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -459,9 +459,9 @@ void ignoreException(); /* Tree formatting. */ -constexpr char treeConn[] = "╠═══"; -constexpr char treeLast[] = "╚═══"; -constexpr char treeLine[] = "║ "; +constexpr char treeConn[] = "├───"; +constexpr char treeLast[] = "└───"; +constexpr char treeLine[] = "│ "; constexpr char treeNull[] = " "; |