Skip to content

Commit

Permalink
Merge pull request #240 from Respirayson/branch-task-bugfixes
Browse files Browse the repository at this point in the history
Fix bug as text cannot see
  • Loading branch information
ldinghan authored Nov 9, 2023
2 parents 2603791 + 9b56ba9 commit 34955bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/ui/TaskCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ public TaskCard(Task task, int displayedIndex) {
priority.setStyle("-fx-fill: green");
break;
case MEDIUM:
priority.setStyle("-fx-fill: yellow");
priority.setStyle("-fx-fill: blue");
break;
case HIGH:
priority.setStyle("-fx-fill: red");
break;
default:
priority.setStyle("-fx-fill: white");
priority.setStyle("-fx-fill: black");
}

name.setStrikethrough(isDone);
Expand Down

0 comments on commit 34955bb

Please sign in to comment.