diff options
author | Josh Rahm <rahm@google.com> | 2021-09-15 01:08:10 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2021-09-15 01:18:33 -0600 |
commit | 2ded77656793f340440fe0efb54119697bb22a1a (patch) | |
tree | db9e584a2882f2137ff029800cf35a61a7502e65 /alacritty/src/renderer/rects.rs | |
parent | d2b578e011d62311125033d895060986a96d3c88 (diff) | |
download | r-alacritty-2ded77656793f340440fe0efb54119697bb22a1a.tar.gz r-alacritty-2ded77656793f340440fe0efb54119697bb22a1a.tar.bz2 r-alacritty-2ded77656793f340440fe0efb54119697bb22a1a.zip |
Added ability to set the special color for the undercur and underlines using the standard ANSI code 59
Diffstat (limited to 'alacritty/src/renderer/rects.rs')
-rw-r--r-- | alacritty/src/renderer/rects.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/renderer/rects.rs b/alacritty/src/renderer/rects.rs index 91a67c22..2640b645 100644 --- a/alacritty/src/renderer/rects.rs +++ b/alacritty/src/renderer/rects.rs @@ -260,7 +260,7 @@ impl RenderLines { } // Start new line if there currently is none. - let line = RenderLine { start: cell.point, end, color: cell.fg }; + let line = RenderLine { start: cell.point, end, color: cell.sp }; match self.inner.get_mut(&flag) { Some(lines) => lines.push(line), None => { |