From ce20c72173bc88a6d22497ec98c968268e8a749b Mon Sep 17 00:00:00 2001 From: mikera Date: Wed, 20 Nov 2024 11:38:08 +0000 Subject: [PATCH] Improve connect tooltips --- .../src/main/java/convex/gui/components/ConnectPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convex-gui/src/main/java/convex/gui/components/ConnectPanel.java b/convex-gui/src/main/java/convex/gui/components/ConnectPanel.java index ff478575a..006984aef 100644 --- a/convex-gui/src/main/java/convex/gui/components/ConnectPanel.java +++ b/convex-gui/src/main/java/convex/gui/components/ConnectPanel.java @@ -43,7 +43,7 @@ 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())); } @@ -51,7 +51,7 @@ public ConnectPanel() { { // 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())); }