Skip to content

Commit

Permalink
Finalize duke
Browse files Browse the repository at this point in the history
  • Loading branch information
mario7lorenzo committed Mar 1, 2020
1 parent 6bbd514 commit 8f8daa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/duke/util/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void markAsDone() {
*/

public String getStatusIcon() {
return (this.isDone ? "" : "");
return (this.isDone ? "V" : "X");
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/view/DialogBox.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.HBox?>

<fx:root alignment="TOP_RIGHT" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity"
<fx:root alignment="TOP_RIGHT" maxHeight="Infinity" maxWidth="Infinity" minHeight="-Infinity"
prefWidth="400.0" type="javafx.scene.layout.HBox" xmlns="http://javafx.com/javafx/11.0.1"
xmlns:fx="http://javafx.com/fxml/1">
<children>
Expand Down

0 comments on commit 8f8daa2

Please sign in to comment.