Skip to content

Commit

Permalink
Adjust MainWindow min. dimensions
Browse files Browse the repository at this point in the history
Previous the min. width is too high, resulting in breaking OS
shortcut keys (Windows Key + Left/Right) for split screening
applications.
  • Loading branch information
lekoook committed Nov 1, 2018
1 parent b59cf9a commit 319f297
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.stage.Stage?>

<fx:root maximized="true" minHeight="800.0" minWidth="1000.0" onCloseRequest="#handleExit" type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1">
<fx:root maximized="true" minHeight="800.0" minWidth="900.0" onCloseRequest="#handleExit"
type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1">
<icons>
<Image url="@/images/address_book_32.png" />
</icons>
Expand Down

0 comments on commit 319f297

Please sign in to comment.