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

ComboBox drop down should move or close when outer stage moves

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 9
    • 8
    • javafx

      Add these lines to HelloComboBox:

          @Override public void start(final Stage stage) {
              stage.setTitle("ComboBox");
              stage.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler() {
                  public void handle(Event event) {
                      stage.setX(100);
                      stage.setY(100);
                  }
              });
      ...

      0) Run HelloComboBox
      1) Drop down a list with the mouse
      2) Press any key
      3) The stage moves but the drop down list stays in the same place

      I'm wondering if the drop down list is also hidden/shown properly when the outer stage it hidden/shown. Please check this as part of the fix

            jgiles Jonathan Giles
            snorthov Steve Northover (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: