diff --git a/assets/demo.png b/assets/demo.png index 6a186a5..5622d97 100644 Binary files a/assets/demo.png and b/assets/demo.png differ diff --git a/src/widgets/inspect_overlay.rs b/src/widgets/inspect_overlay.rs index 67f957a..bc8717b 100644 --- a/src/widgets/inspect_overlay.rs +++ b/src/widgets/inspect_overlay.rs @@ -46,14 +46,14 @@ pub fn inspect_overlay( ); rows.push(Row::new(vec![format!( - " → Characteristic: {}", + " ↳ Characteristic: {}", characteristic.uuid.to_string() )])); - rows.push(Row::new(vec![format!(" → Properties: {}", properties)])); + rows.push(Row::new(vec![format!(" ↳ Properties: {}", properties)])); for descriptor in characteristic.descriptors.iter() { rows.push(Row::new(vec![format!( - " → Descriptor: {}", + " ↳ Descriptor: {}", descriptor.to_string() )])); }