File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 77- Fix long file name wrapping in header, see #2835 (@FilipRazek )
88- Fix ` NO_COLOR ` support, see #2767 (@acuteenvy )
99- Fix handling of inputs with OSC ANSI escape sequences, see #2541 and #2544 (@eth-p )
10+ - Fix panel width when line 10000 wraps, see #2854 (@eth-p )
1011
1112## Other
1213
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ impl Decoration for LineNumberDecoration {
4646 _printer : & InteractivePrinter ,
4747 ) -> DecorationText {
4848 if continuation {
49- if line_number > self . cached_wrap_invalid_at {
49+ if line_number >= self . cached_wrap_invalid_at {
5050 let new_width = self . cached_wrap . width + 1 ;
5151 return DecorationText {
5252 text : self . color . paint ( " " . repeat ( new_width) ) . to_string ( ) ,
You can’t perform that action at this time.
0 commit comments