Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'Tainfante_origin/master'"
Browse files Browse the repository at this point in the history
This reverts commit a01f16f.
  • Loading branch information
opetany93 committed Jan 24, 2018
1 parent a01f16f commit cb8ab65
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .idea/artifacts/RealTimeSerialPlotter_jar.xml

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

4 changes: 4 additions & 0 deletions src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Manifest-Version: 1.0
Class-Path: purejavacomm-1.0.2.RELEASE.jar
Main-Class: application.Main

4 changes: 4 additions & 0 deletions src/application/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.stage.Stage;
import mainwindow.CaptureController;
import plot.Plot;
Expand All @@ -22,6 +23,9 @@ public void start(Stage primaryStage) throws Exception
primaryStage.setMinHeight(450.0);
primaryStage.setMinWidth(620.0);

Image applicationIcon = new Image(getClass().getResourceAsStream("icon.png"));
primaryStage.getIcons().add(applicationIcon);

primaryStage.setOnCloseRequest(event ->
{
CaptureController.isActiveExport = false;
Expand Down
Binary file added src/application/RealTimeSerialPlotter_box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/application/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cb8ab65

Please sign in to comment.