Browse Source

Saving settings on Drag release

Martin Beyer 3 years ago
parent
commit
cf17a3f9ca

+ 5 - 1
src/main/java/org/cryptomator/ui/mainwindow/MainWindowTitleController.java

@@ -77,9 +77,13 @@ public class MainWindowTitleController implements FxController {
 			window.setX(event.getScreenX() - xOffset);
 			window.setY(event.getScreenY() - yOffset);
 		});
-		titleBar.setOnMouseReleased(event -> {
+		titleBar.setOnDragDetected(mouseDragEvent -> {
+			titleBar.startFullDrag();
+		});
+		titleBar.setOnMouseDragReleased(mouseDragEvent -> {
 			saveWindowSettings();
 		});
+
 		window.setOnCloseRequest(event -> {
 			close();
 			event.consume();