Skip to content

Commit 8f8daa2

Browse files
committed
Finalize duke
1 parent 6bbd514 commit 8f8daa2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/duke/util/Task.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void markAsDone() {
5252
*/
5353

5454
public String getStatusIcon() {
55-
return (this.isDone ? "" : "");
55+
return (this.isDone ? "V" : "X");
5656
}
5757

5858
/**

src/main/resources/view/DialogBox.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?import javafx.scene.image.ImageView?>
66
<?import javafx.scene.layout.HBox?>
77

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

0 commit comments

Comments
 (0)