|
|
|
|
@ -44,7 +44,7 @@ private static class PrivateKeysPanel
|
|
|
|
|
{
|
|
|
|
|
private AccountsComboBox cbAccounts;
|
|
|
|
|
|
|
|
|
|
private JLabel lblFingerprint;
|
|
|
|
|
private JTextField lblFingerprint;
|
|
|
|
|
|
|
|
|
|
private JButton btnGenerate;
|
|
|
|
|
|
|
|
|
|
@ -189,7 +189,10 @@ public void actionPerformed(ActionEvent e)
|
|
|
|
|
});
|
|
|
|
|
valuesPanel.add(cbAccounts);
|
|
|
|
|
|
|
|
|
|
lblFingerprint = new JLabel();
|
|
|
|
|
lblFingerprint = new JTextField();
|
|
|
|
|
lblFingerprint.setEditable(false);
|
|
|
|
|
lblFingerprint.setOpaque(false);
|
|
|
|
|
lblFingerprint.setBorder(BorderFactory.createEmptyBorder());
|
|
|
|
|
valuesPanel.add(lblFingerprint);
|
|
|
|
|
|
|
|
|
|
JPanel buttonPanel
|
|
|
|
|
|