mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-17 12:50:11 +10:00
Fix an issue with incorrect logging of secure boot state
This commit is contained in:
+1
-2
@@ -2221,8 +2221,7 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
double width = Math.Max(allowedSpace * (Percentage / totalPercentage), 0);
|
||||
_element.Width = width;
|
||||
_element.Width = (double)Math.Max(allowedSpace * (Percentage / totalPercentage), 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user