Skip to content

Commit 1642610

Browse files
committed
Auto merge of #1147 - rust-lang-nursery:db-white-text-fix, r=brson
Fix white welcome text on white background Fixes last occurrence of #433 r? @brson
2 parents 986d64c + a774016 commit 1642610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rustup-cli/term2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ impl<'a, T: Instantiable + Isatty + io::Write + 'a> LineFormatter<'a, T> {
178178
fn do_block(&mut self, b: Block) {
179179
match b {
180180
Block::Header(spans, _) => {
181-
self.push_attr(Attr::ForegroundColor(color::BRIGHT_WHITE));
181+
self.push_attr(Attr::Bold);
182182
self.wrapper.write_line();
183183
self.do_spans(spans);
184184
self.wrapper.write_line();

0 commit comments

Comments
 (0)