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

[Keyboard] Incorrect value reported by KeyBinding.getSpecificity()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 8u20
    • javafx

      com.sun.javafx.scene.control.behavior.KeyBinding.getSpecificity() contains the following code:

          if (code != null && code != event.getCode()) return 0; else s = 1;
          // ...
          if (eventType != null && eventType != event.getEventType()) return 0; else s++;

      which means that it does not differentiate between code == null and code == event.getCode(), i.e. returns the same value for both cases, while the latter is more specific. The same is true for eventType.

            jgiles Jonathan Giles
            tmikula Tomas Mikula
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: