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

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 8
    • Affects Version/s: 7u13
    • Component/s: javafx
    • Environment:

      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.

            Assignee:
            Alexander Zvegintsev
            Reporter:
            J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: