We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d795d0 commit 40d0a1bCopy full SHA for 40d0a1b
common/src/selectors.rs
@@ -332,8 +332,9 @@ impl fmt::Display for PossibleSigs {
332
333
writeln!(f, " ------------")?;
334
for (i, row) in self.data.iter().enumerate() {
335
- let pad = if i < 10 { " " } else { " " };
336
- writeln!(f, " [{i}]:{pad}{row}")?;
+ let row_label_decimal = i * 32;
+ let row_label_hex = format!("{:03x}", row_label_decimal);
337
+ writeln!(f, " [{row_label_hex}]: {row}")?;
338
}
339
Ok(())
340
0 commit comments