remove border color, reduce default cursor size, enforce minWidth of 650

This commit is contained in:
Martin Beyer
2021-08-30 17:13:46 +02:00
parent cf633d74d2
commit 947344e5bc
3 changed files with 6 additions and 7 deletions

View File

@@ -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;