Skip to content

Commit

Permalink
Sum Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BeePerNet committed Oct 3, 2019
1 parent 3897138 commit 78b6b48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SizeOnDisk/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.14.8.42")]
[assembly: AssemblyFileVersion("2.14.8.42")]
[assembly: AssemblyVersion("2.14.9.42")]
[assembly: AssemblyFileVersion("2.14.9.42")]
2 changes: 1 addition & 1 deletion SizeOnDisk/ViewModel/VMFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public ulong? FileSize
}
protected set
{
if (value != _FileSize)
if (value != FileSize)
{
if (value.HasValue)
{
Expand Down
2 changes: 1 addition & 1 deletion SizeOnDisk/ViewModel/VMFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ internal VMFolder(VMFolder parent, string name)
private ulong _FileTotal = 1;
private ulong _FolderTotal = 0;

public ulong? FileCount => (ulong?)(Childs?.Count - Folders?.Count);
public ulong? FileCount => (ulong)(Childs.Count - Folders.Count);

public override ulong? FolderTotal
{
Expand Down

0 comments on commit 78b6b48

Please sign in to comment.