Skip to content

Commit 10eb1a3

Browse files
committed
Fix header padding
1 parent fd2bf9f commit 10eb1a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/list/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ impl<'a> ListState<'a> {
189189
// Header
190190
let mut writer = MaxLenWriter::new(stdout, self.term_width as usize);
191191
writer.write_ascii(b" Current State Name")?;
192-
writer.write_ascii(&self.name_col_padding[2..])?;
192+
writer.write_ascii(&self.name_col_padding[4..])?;
193193
writer.write_ascii(b"Path")?;
194194
next_ln(stdout)?;
195195

0 commit comments

Comments
 (0)