Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8124666

Gtk: calling stage.setResizable(false) does not work on Ubuntu Linux

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 8
    • 7u13
    • javafx
    • Ubuntu 12.10 Unity Window Manager. JDK 7_13

      Having the example:

      public class HelloWorld extends Application{
          @Override
          public void start(Stage stage) throws Exception {
              VBox root = new VBox();
              root.getChildren().add(new Text("HELLO"));
              stage.setScene(new Scene(root, 200, 200));
              stage.setResizable(false);
              stage.show();
          }

          public static void main(String[] args) {
              launch(HelloWorld.class);
          }

      }

      does not hinder the Window to be resiable on Ubuntu Linux.

            azvegint Alexander Zvegintsev
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: