File tree Expand file tree Collapse file tree 4 files changed +2
-2
lines changed
out/production/Image Resizer/com/marwaeltayeb/fir Expand file tree Collapse file tree 4 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class Main extends Application {
13
13
public void start (Stage primaryStage ) throws Exception {
14
14
Parent root = FXMLLoader .load (getClass ().getResource ("ui/main.fxml" ));
15
15
primaryStage .setTitle ("Fast Image Resizer" );
16
- primaryStage .setScene (new Scene (root , 650 , 400 ));
16
+ primaryStage .setScene (new Scene (root , 650 , 385 ));
17
17
primaryStage .getIcons ().add (new Image ("/com/marwaeltayeb/fir/assets/logo.png" ));
18
18
primaryStage .getScene ().getStylesheets ().add (getClass ().getResource ("stylesheet/application.css" ).toExternalForm ());
19
19
primaryStage .setResizable (false );
Original file line number Diff line number Diff line change 5
5
<?import javafx .scene.layout.*?>
6
6
7
7
<?import org .controlsfx.control.CheckComboBox?>
8
- <AnchorPane fx : id =" anchorId" prefHeight =" 400 .0" prefWidth =" 650.0" xmlns =" http://javafx.com/javafx/8.0.121" xmlns : fx =" http://javafx.com/fxml/1" fx : controller =" com.marwaeltayeb.fir.controller.MainController" >
8
+ <AnchorPane fx : id =" anchorId" prefHeight =" 385 .0" prefWidth =" 650.0" xmlns =" http://javafx.com/javafx/8.0.121" xmlns : fx =" http://javafx.com/fxml/1" fx : controller =" com.marwaeltayeb.fir.controller.MainController" >
9
9
<children >
10
10
<Button fx : id =" btnBrowse" layoutX =" 27.0" layoutY =" 23.0" mnemonicParsing =" false" onAction =" #browse" text =" Browse" />
11
11
<Label fx : id =" lblOutputPath" layoutX =" 91.0" layoutY =" 23.0" prefHeight =" 27.0" prefWidth =" 260.0" text =" Output Directory Path" />
You can’t perform that action at this time.
0 commit comments