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

[hidpi] Ubuntu 16.04: the toolbar's ">>" button isn't navigable

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • 9
    • 9
    • javafx

      this is probably the next duplicate for JDK-8159963, so filing separately just to check the case after the fix.

      Ubuntu 16.04 (Unity) + HiDPI, JDK9 b135.

      Please run the following code:

      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.web.HTMLEditor;
      import javafx.stage.Stage;

      public class HTMLEditorSample extends Application {

          @Override
          public void start(Stage stage) {
              stage.setWidth(300);
              stage.setHeight(300);
              final HTMLEditor htmlEditor = new HTMLEditor();
              htmlEditor.setPrefHeight(245);
              Scene scene = new Scene(htmlEditor);
              stage.setScene(scene);
              stage.show();
          }

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

      the ">>" buttons in the right corners of the toolbars are not navigable.


      the issue isn't reproducible on a non-HiDPI machine with the same OS.
      JDK 8: not applicable, as there are no ">>" buttons

        1. screenshot-1.png
          screenshot-1.png
          15 kB
        2. HTMLEditorSample.java
          0.5 kB
        3. HiDPI_NOK.mp4
          1.27 MB

            ddhill David Hill (Inactive)
            avstepan Alexander Stepanov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: