Skip to content

Commit

Permalink
Improve connect tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Nov 20, 2024
1 parent 969cbe2 commit ce20c72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ public ConnectPanel() {
{ // Peer selection
pan.add(new JLabel("Peer"));
hostField=new HostCombo();
hostField.setToolTipText("Connect to a Convex peer that you trust. The peer is resposible for handling transactions on your behalf.");
hostField.setToolTipText("Connect to a Convex peer that you trust. \nThe peer is resposible for handling transactions on your behalf.");
pan.add(hostField,"width 50:250:");
pan.add(Toolkit.makeHelp(hostField.getToolTipText()));
}

{ // Address selection
pan.add(new JLabel("Address"));
addressField=new AddressCombo(Init.GENESIS_ADDRESS);
addressField.setToolTipText("Set the initial account address to use. This should be an account for which you possess the private key.");
addressField.setToolTipText("Set the initial account address to use. \nNormally this should be an account for which you possess the private key. \nIf you don't have the private key, you can still view the account but cannot execute transactions.");
pan.add(addressField,"width 50:250:");
pan.add(Toolkit.makeHelp(addressField.getToolTipText()));
}
Expand Down

0 comments on commit ce20c72

Please sign in to comment.