diff options
author | 2022-09-26 13:48:34 +0200 | |
---|---|---|
committer | 2022-09-26 13:48:34 +0200 | |
commit | 3c2a8b70add7139bf564313da4d2267138ae65aa (patch) | |
tree | f593283cb482f9741dea3500451fedd3a55ea3f2 /winit | |
parent | 3c9af1eb31d8f5e4a6cfcc10aa41e48868f3d6eb (diff) | |
parent | bb9236901718a534079131c0719a7d3eeedd19b5 (diff) | |
download | iced-3c2a8b70add7139bf564313da4d2267138ae65aa.tar.gz iced-3c2a8b70add7139bf564313da4d2267138ae65aa.tar.bz2 iced-3c2a8b70add7139bf564313da4d2267138ae65aa.zip |
Merge pull request #1445 from clarkmoody/tweak-sysinfo
Tweak System Information
Diffstat (limited to '')
-rw-r--r-- | winit/src/system.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winit/src/system.rs b/winit/src/system.rs index 0303707e..619086b8 100644 --- a/winit/src/system.rs +++ b/winit/src/system.rs @@ -31,6 +31,7 @@ pub(crate) fn information( system_name: system.name(), system_kernel: system.kernel_version(), system_version: system.long_os_version(), + system_short_version: system.os_version(), cpu_brand: cpu.brand().into(), cpu_cores: system.physical_core_count(), memory_total: system.total_memory(), |