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

Label's showMnemonic state is not reset when labelFor set to null

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • fx2.0
    • fx2.0
    • javafx
    • None

      The following test fails:


          @Test public void showMnemonicsOfLabelIsSetToFalseWhenLabelForIsCleared() {
              TextField textField = new TextField();
              textField.impl_setShowMnemonics(true);
              label.setLabelFor(textField);
              label.setLabelFor(null);
              assertTrue(textField.impl_isShowMnemonics());
              assertFalse(label.impl_isShowMnemonics());
          }

            rbair Richard Bair (Inactive)
            rbair Richard Bair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: