update vars names

This commit is contained in:
yggverse 2025-03-24 06:40:13 +02:00
parent 556a1eba89
commit 2275802eae

View file

@ -53,10 +53,10 @@ impl Dialog for PreferencesDialog {
let g = PreferencesGroup::builder().title("Size").build();
let mut i = 0; // count group members
let mut t = 0; // count total size
if let Some(ref c) = info.size.header {
if let Some(ref h) = info.size.header {
i += 1;
t += c;
g.add(&r("Header", &c.bytes()))
t += h;
g.add(&r("Header", &h.bytes()))
}
if let Some(ref c) = info.size.content {
i += 1;