We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbd514 commit 8f8daa2Copy full SHA for 8f8daa2
src/main/java/duke/util/Task.java
@@ -52,7 +52,7 @@ public void markAsDone() {
52
*/
53
54
public String getStatusIcon() {
55
- return (this.isDone ? "✓" : "✗");
+ return (this.isDone ? "V" : "X");
56
}
57
58
/**
src/main/resources/view/DialogBox.fxml
@@ -5,7 +5,7 @@
5
<?import javafx.scene.image.ImageView?>
6
<?import javafx.scene.layout.HBox?>
7
8
-<fx:root alignment="TOP_RIGHT" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity"
+<fx:root alignment="TOP_RIGHT" maxHeight="Infinity" maxWidth="Infinity" minHeight="-Infinity"
9
prefWidth="400.0" type="javafx.scene.layout.HBox" xmlns="http://javafx.com/javafx/11.0.1"
10
xmlns:fx="http://javafx.com/fxml/1">
11
<children>
0 commit comments