Skip to content

Commit

Permalink
Fixing formatting issues
Browse files Browse the repository at this point in the history
Fixing some formatting issues with displaying the list of tasks
  • Loading branch information
TyrusLye committed Oct 1, 2023
1 parent 7273363 commit 2da97b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>

<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="MainWindow">
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="1000.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="MainWindow">
<children>
<TextField fx:id="userInput" layoutY="558.0" onAction="#handleUserInput" prefHeight="41.0" prefWidth="924.0" AnchorPane.bottomAnchor="1.0" />
<Button fx:id="sendButton" layoutX="924.0" layoutY="558.0" mnemonicParsing="false" onAction="#handleUserInput" prefHeight="41.0" prefWidth="76.0" text="Send" />
<ScrollPane fx:id="scrollPane" hbarPolicy="NEVER" hvalue="1.0" prefHeight="557.0" prefWidth="1000.0" vvalue="1.0">
<TextField fx:id="userInput" layoutY="958.0" onAction="#handleUserInput" prefHeight="41.0" prefWidth="924.0" AnchorPane.bottomAnchor="1.0" />
<Button fx:id="sendButton" layoutX="924.0" layoutY="958.0" mnemonicParsing="false" onAction="#handleUserInput" prefHeight="41.0" prefWidth="76.0" text="Send" />
<ScrollPane fx:id="scrollPane" hbarPolicy="NEVER" hvalue="1.0" prefHeight="957.0" prefWidth="1000.0" vvalue="1.0">
<content>
<VBox fx:id="dialogContainer" prefHeight="552.0" prefWidth="988.0" />
<VBox fx:id="dialogContainer" xmlns:fx="http://javafx.com/fxml/1" alignment="TOP_LEFT" spacing="10" VBox.vgrow="ALWAYS" prefWidth="988.0" />
</content>
</ScrollPane>
</children>
Expand Down

0 comments on commit 2da97b5

Please sign in to comment.