Skip to content

Commit 5cf55c4

Browse files
authored
Merge pull request #293 from ProgrammingLife2017/update_guiTestFile
updated the test file
2 parents a83d3fb + 8897b25 commit 5cf55c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/resources/Basic_Gui.fxml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<!--suppress ALL -->
4-
53
<?import javafx.scene.canvas.Canvas?>
64
<?import javafx.scene.control.*?>
75
<?import javafx.scene.Group?>
86
<?import javafx.scene.layout.*?>
7+
<?import programminglife.gui.ResizableCanvas?>
8+
99
<AnchorPane prefHeight="500.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="programminglife.gui.controller.GuiController">
1010
<children>
1111
<MenuBar AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
@@ -53,7 +53,7 @@
5353
<AnchorPane fx:id="anchorGraphPanel" minHeight="200" minWidth="200" prefHeight="Infinity" prefWidth="Infinity">
5454
<children>
5555
<Canvas fx:id="miniMap" height="100" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" />
56-
<Group fx:id="grpDrawArea" AnchorPane.bottomAnchor="100.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
56+
<ResizableCanvas fx:id="canvas" height="1000" width="1000" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
5757
<ProgressBar fx:id="progressBar" minHeight="18.0" minWidth="100.0" progress="0.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" />
5858
</children>
5959
</AnchorPane>

0 commit comments

Comments
 (0)