mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
05.24.2007 5e20ec3f6275fbc24a218712cf8ea4b5fcf8f376
Use a JEditorPanel instead of a label for the signature widget so that the text is wrapped.
1 files modified
3 ■■■■ changed files
opends/src/quicksetup/org/opends/quicksetup/ui/CertificateDialog.java 3 ●●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/ui/CertificateDialog.java
@@ -587,7 +587,8 @@
      }
      sb.append(Integer.toHexString(((int) sig[i]) & 0xFF));
    }
    return makeValueLabel(sb.toString());
    return UIFactory.makeTextPane(sb.toString(),
        UIFactory.TextStyle.SECONDARY_FIELD_VALID);
  }
  private JComponent createSignatureAlgorithmComponent(X509Certificate cert)