Skip to content

Commit

Permalink
remove ability to resize which broke the program
Browse files Browse the repository at this point in the history
  • Loading branch information
Lian-D committed Jan 27, 2019
1 parent b03a21f commit 75654d5
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 25 deletions.
44 changes: 22 additions & 22 deletions frontend/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/out/production/Display/gui/Home.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Font name="Times New Roman Bold" size="96.0" />
</font>
</Label>
<Label layoutX="185.0" layoutY="211.0" text="Prioritize the patients" textAlignment="CENTER">
<Label layoutX="180.0" layoutY="211.0" text="Hospital Prioritization" textAlignment="CENTER">
<font>
<Font name="Times New Roman" size="27.0" />
</font>
Expand Down
Binary file modified frontend/out/production/Display/gui/HomeController.class
Binary file not shown.
Binary file modified frontend/out/production/Display/gui/Main.class
Binary file not shown.
Binary file modified frontend/out/production/Display/gui/Patientdata.class
Binary file not shown.
2 changes: 1 addition & 1 deletion frontend/src/gui/Home.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Font name="Times New Roman Bold" size="96.0" />
</font>
</Label>
<Label layoutX="185.0" layoutY="211.0" text="Prioritize the patients" textAlignment="CENTER">
<Label layoutX="180.0" layoutY="211.0" text="Hospital Prioritization" textAlignment="CENTER">
<font>
<Font name="Times New Roman" size="27.0" />
</font>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/gui/HomeController.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public void intialize() throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("Patientdata.fxml"));
Parent root1 = (Parent) fxmlLoader.load();
Stage stage = new Stage();
stage.setResizable(false);
stage.setTitle("PatientData");
stage.setScene(new Scene(root1));
stage.show();
Expand Down
1 change: 1 addition & 0 deletions frontend/src/gui/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public void start(Stage primaryStage) throws Exception{
primaryStage.setTitle("Christina: Hospital Alert");
primaryStage.setScene(new Scene(root, 600, 400));
primaryStage.show();
primaryStage.setResizable(false);
}


Expand Down
2 changes: 1 addition & 1 deletion frontend/src/gui/Patientdata.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void initialize(URL location, ResourceBundle resources) {
FileUpdateCheck fuc = new FileUpdateCheck();
fuc.fileUpdate(file);
//This is how we test for if our files have updated
int delay = 5000; //milliseconds
int delay = 2500; //milliseconds
ActionListener taskPerformer = new ActionListener() {
public void actionPerformed(ActionEvent evt) {
System.out.println("Checking For Updates");
Expand Down

0 comments on commit 75654d5

Please sign in to comment.