Skip to content

Commit

Permalink
[FIX JENKINS-8358] Use DISABLED_ANIME icon while building
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed May 23, 2014
1 parent 016f304 commit 9163407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/AbstractProject.java
Expand Up @@ -721,7 +721,7 @@ public void enable() throws IOException {
@Override
public BallColor getIconColor() {
if(isDisabled())
return BallColor.DISABLED;
return isBuilding() ? BallColor.DISABLED_ANIME : BallColor.DISABLED;
else
return super.getIconColor();
}
Expand Down

0 comments on commit 9163407

Please sign in to comment.