Skip to content

Commit

Permalink
Returning specific image for uptodatebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Oct 13, 2017
1 parent f04a11f commit 4aa3b4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions BuildVision.UI/Extensions/ProjectStateExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ public static ControlTemplate GetAssociatedContent(this ProjectState state)
case ProjectState.Building:
case ProjectState.Cleaning:
return VectorResources.TryGet(resourcesUri, "Building");
case ProjectState.BuildDone:
case ProjectState.UpToDate:
return VectorResources.TryGet(resourcesUri, "BuildUpToDate");
case ProjectState.BuildDone:
case ProjectState.CleanDone:
return VectorResources.TryGet(resourcesUri, "BuildDone");
case ProjectState.BuildError:
Expand All @@ -38,4 +39,4 @@ public static ControlTemplate GetAssociatedContent(this ProjectState state)
}
}
}
}
}

0 comments on commit 4aa3b4f

Please sign in to comment.