Skip to content

Commit

Permalink
Fix for Operation stab not puoulating correctly when first opened
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed May 9, 2024
1 parent 718e02d commit cee721a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public ActorInvokePanel(Convex convex,StateModel<State> model, Address contract)
AccountStatus as = model.getValue().getAccount(contract);
ASet<Symbol> exports = as.getCallableFunctions();
for (Symbol s : exports) {
System.err.println(s);
exportList.addElement(s);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ public void contentsChanged(ListDataEvent e) {
refreshList();
}
});

refreshList();
}

public Component[] getListComponents() {
Expand Down

0 comments on commit cee721a

Please sign in to comment.