Skip to content

Commit

Permalink
Fixed #1864 - Process Method Editor - export also Id via copy and paste
Browse files Browse the repository at this point in the history
  • Loading branch information
eselmeister committed Sep 11, 2024
1 parent d86ec87 commit 6852b64
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ public void copyToClipboard(Display display) {
builder.append("Description");
builder.append("\t");
builder.append("Settings");
builder.append("\t");
builder.append("Id");
builder.append(lineDelimiter);
/*
* Data
Expand All @@ -199,6 +201,8 @@ public void copyToClipboard(Display display) {
builder.append(processEntry.getDescription());
builder.append("\t");
builder.append(processEntry.getSettings());
builder.append("\t");
builder.append(processEntry.getProcessorId());
builder.append(lineDelimiter);
}
}
Expand Down

0 comments on commit 6852b64

Please sign in to comment.