Skip to content

Instantly share code, notes, and snippets.

@MrChebik
Created August 9, 2018 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrChebik/20cf78672e4c25f4ac1ef22867a8a037 to your computer and use it in GitHub Desktop.
Save MrChebik/20cf78672e4c25f4ac1ef22867a8a037 to your computer and use it in GitHub Desktop.
[BUG] [JavaFX] [Java 10] Resizable
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage stage) {
stage.setResizable(false);
stage.setScene(new Scene(new Group()));
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment