Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 'Replace next' and 'Replace all' to Find command in Script Editor #898

Merged
merged 7 commits into from
Feb 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This is a work-in-progress.

### Bugs fixed
* Reading from Bio-Formats blocks forever when using multiple series outside a project (https://github.com/qupath/qupath/issues/894)
* 'Ignore case' in the Find window of the Script editor does not ignore case (https://github.com/qupath/qupath/issues/889)
* Owner of Find window in the script editor is lost when the script editor window is closed (https://github.com/qupath/qupath/issues/893)

### Enhancements
* Added 'Replace next' and 'Replace all' features to the Find window in the script editor


## Version 0.3.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,8 @@ public IndexRange getSelection() {
}

@Override
public void selectRange(int anchor, int caretPosition) {
textArea.selectRange(anchor, caretPosition);
public void selectRange(int startIdx, int endIdx) {
textArea.selectRange(startIdx, endIdx);
}

@Override
Expand Down