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

Gtk: linux: iconifiedProperty not correctly updated when application is minimized

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • 8
    • 7u40
    • javafx
    • ubuntu 12.04 LTS java 1.7.0_40-b43

      iconifiedProperty is not updated when application window is minimized (by clicking on minimize button in right upper corner on ubuntu 12.04 LTS)

      public class Main extends Application {

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

          @Override
          public void start(final Stage primaryStage) {
              primaryStage.setTitle("Popup Example");
              primaryStage.setWidth(300);
              primaryStage.setHeight(200);

              primaryStage.iconifiedProperty().addListener(new ChangeListener<Boolean>() {

                  @Override
                  public void changed(ObservableValue<? extends Boolean> observableValue, Boolean oldValue, Boolean newValue) {
                      System.err.println("Iconified changed to " + newValue);
                  }
              });

              HBox layout = new HBox(10);
              primaryStage.setScene(new Scene(layout));
              primaryStage.show();
          }
      }

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

              Created:
              Updated:
              Resolved:
              Imported: