Skip to content

Commit

Permalink
GUI edits, extra tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed May 9, 2024
1 parent ef80828 commit 71ecc97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public AccountChooserPanel(Convex convex) {
mp.add(addressCombo);

keyCombo=KeyPairCombo.forConvex(convex);
keyCombo.setToolTipText("Select a key pair from your Keyring. This will be used to sign transactions.");
keyCombo.addItemListener(e->{
if (e.getStateChange()==ItemEvent.DESELECTED) return;
AWalletEntry we=(AWalletEntry)e.getItem();
Expand Down
2 changes: 1 addition & 1 deletion convex-peer/src/main/java/convex/api/Convex.java
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ protected CompletableFuture<Result> awaitResult(long id, long timeout) {
* @param query Query to execute, as a Form or Op
* @param address Address to use for the query
* @return A Future for the result of the query
* @throws IOException If the connection is broken, or the send buffer is full
* @throws IOException In case of IO problem (connection is broken, send buffer full)
*/
public abstract CompletableFuture<Result> query(ACell query, Address address) throws IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ protected SslPlugin getSSLPlugin(HashMap<Keyword, Object> config) {
return sslPlugin;
}

@SuppressWarnings("deprecation")
protected void addOpenApiPlugins(JavalinConfig config) {
config.registerPlugin(new OpenApiPlugin(pluginConfig -> {

Expand Down

0 comments on commit 71ecc97

Please sign in to comment.