diff options
author | 2025-02-15 14:15:43 +0100 | |
---|---|---|
committer | 2025-02-15 14:15:43 +0100 | |
commit | d6848977bcad767a8e8ae83b5069726615886947 (patch) | |
tree | cb4a1995385d36faa5ad1d5b40bbff7875b7523d /examples | |
parent | 7c54bdef1062e4008582d8b1e215ffcc1c1ee016 (diff) | |
parent | 8694eeb5c5ace4c2343e1eec3e64e27d36b656bd (diff) | |
download | iced-d6848977bcad767a8e8ae83b5069726615886947.tar.gz iced-d6848977bcad767a8e8ae83b5069726615886947.tar.bz2 iced-d6848977bcad767a8e8ae83b5069726615886947.zip |
Merge pull request #2797 from AMS21/fix_2794
Fix system informations `cpu_brand` always being empty
Diffstat (limited to 'examples')
-rw-r--r-- | examples/system_information/src/main.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/examples/system_information/src/main.rs b/examples/system_information/src/main.rs index afa657d8..56f934b7 100644 --- a/examples/system_information/src/main.rs +++ b/examples/system_information/src/main.rs @@ -102,22 +102,22 @@ impl Example { ); let memory_readable = - ByteSize::b(information.memory_total).to_string(); + ByteSize::b(information.memory_total).to_string_as(true); let memory_total = text!( "Memory (total): {} bytes ({memory_readable})", information.memory_total, ); - let memory_text = if let Some(memory_used) = - information.memory_used - { - let memory_readable = ByteSize::b(memory_used).to_string(); + let memory_text = + if let Some(memory_used) = information.memory_used { + let memory_readable = + ByteSize::b(memory_used).to_string_as(true); - format!("{memory_used} bytes ({memory_readable})") - } else { - String::from("None") - }; + format!("{memory_used} bytes ({memory_readable})") + } else { + String::from("None") + }; let memory_used = text!("Memory (used): {memory_text}"); |