Skip to content

Commit 4aa3b4f

Browse files
committed
Returning specific image for uptodatebuild
1 parent f04a11f commit 4aa3b4f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

BuildVision.UI/Extensions/ProjectStateExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ public static ControlTemplate GetAssociatedContent(this ProjectState state)
2424
case ProjectState.Building:
2525
case ProjectState.Cleaning:
2626
return VectorResources.TryGet(resourcesUri, "Building");
27-
case ProjectState.BuildDone:
2827
case ProjectState.UpToDate:
28+
return VectorResources.TryGet(resourcesUri, "BuildUpToDate");
29+
case ProjectState.BuildDone:
2930
case ProjectState.CleanDone:
3031
return VectorResources.TryGet(resourcesUri, "BuildDone");
3132
case ProjectState.BuildError:
@@ -38,4 +39,4 @@ public static ControlTemplate GetAssociatedContent(this ProjectState state)
3839
}
3940
}
4041
}
41-
}
42+
}

0 commit comments

Comments
 (0)