From 947344e5bc8e3531054c2def2ba49ff86ea88ce8 Mon Sep 17 00:00:00 2001 From: Martin Beyer Date: Mon, 30 Aug 2021 17:13:46 +0200 Subject: [PATCH] remove border color, reduce default cursor size, enforce minWidth of 650 --- .../org/cryptomator/ui/mainwindow/MainWindowModule.java | 2 +- src/main/resources/fxml/main_window.fxml | 2 +- src/main/resources/fxml/main_window_resize.fxml | 9 ++++----- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/cryptomator/ui/mainwindow/MainWindowModule.java b/src/main/java/org/cryptomator/ui/mainwindow/MainWindowModule.java index 3540e876e..993670159 100644 --- a/src/main/java/org/cryptomator/ui/mainwindow/MainWindowModule.java +++ b/src/main/java/org/cryptomator/ui/mainwindow/MainWindowModule.java @@ -49,7 +49,7 @@ abstract class MainWindowModule { @MainWindowScoped static Stage provideStage(StageFactory factory) { Stage stage = factory.create(StageStyle.UNDECORATED); - stage.setMinWidth(550); + stage.setMinWidth(650); stage.setMinHeight(440); stage.setTitle("Cryptomator"); return stage; diff --git a/src/main/resources/fxml/main_window.fxml b/src/main/resources/fxml/main_window.fxml index ff8e65292..91e7512a4 100644 --- a/src/main/resources/fxml/main_window.fxml +++ b/src/main/resources/fxml/main_window.fxml @@ -12,7 +12,7 @@ fx:id="root" fx:controller="org.cryptomator.ui.mainwindow.MainWindowController" styleClass="main-window"> - + diff --git a/src/main/resources/fxml/main_window_resize.fxml b/src/main/resources/fxml/main_window_resize.fxml index 4338e2f65..705271ec3 100644 --- a/src/main/resources/fxml/main_window_resize.fxml +++ b/src/main/resources/fxml/main_window_resize.fxml @@ -22,10 +22,9 @@ - - - - - + + + + \ No newline at end of file