소스 검색

Fix size numbers bolding

Ben S 10 년 전
부모
커밋
6068f2dd86
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/output/details.rs

+ 1 - 1
src/output/details.rs

@@ -363,7 +363,7 @@ impl Render for Size {
                     let symbol = prefix.symbol();
 
                     Cell {
-                        text: ANSIStrings( &[ colours.size.unit.paint(&number[..]), colours.size.unit.paint(symbol) ]).to_string(),
+                        text: ANSIStrings( &[ colours.size.numbers.paint(&number[..]), colours.size.unit.paint(symbol) ]).to_string(),
                         length: number.len() + symbol.len(),
                     }
                 }