Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 23, 2024
1 parent e91e0d2 commit 8707401
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private JPanel createBoxLayoutPanel() {
private void createToolbar() {
DefaultActionGroup group = new DefaultActionGroup();

AnAction create = new UiAction("Create", AllIcons.General.GreenCheckmark, e -> applyPerformed());
AnAction create = new UiAction("Create", AllIcons.Actions.Commit, e -> applyPerformed());
group.add(create);

ActionToolbar toolbar = ActionManager.getInstance().createActionToolbar("TraceGraphToolbar", group, true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void setOpView(PredefinedOpView opView) {
};
group.add(viewTypeComboboxAction);

AnAction apply = new UiAction("Apply", AllIcons.General.GreenCheckmark, e -> applyPerformed());
AnAction apply = new UiAction("Apply", AllIcons.Actions.Commit, e -> applyPerformed());
group.add(apply);

ActionToolbar toolbar = ActionManager.getInstance().createActionToolbar("TraceOptionsToolbar", group, true);
Expand Down

0 comments on commit 8707401

Please sign in to comment.