Skip to content

Commit

Permalink
Make it possible to load ROIs locally (using Bio-Formats)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppouchin committed Nov 5, 2023
1 parent 74dbda6 commit 9df7e80
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/fr/igred/ij/plugin/frame/OMEROBatchPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -800,14 +800,15 @@ private void updateInput(ItemEvent e) {
input1a.setVisible(true);
input1b.setVisible(true);
input1c.setVisible(true);
input1c.add(checkLoadROIs);
input2.setVisible(false);
} else {
local.setSelected(true);
}
} else { //local.isSelected()
input2.setVisible(true);
input2.add(checkLoadROIs);
checkDelROIs.setSelected(false);
checkLoadROIs.setSelected(false);
input1c.setVisible(false);
input1b.setVisible(false);
input1a.setVisible(false);
Expand Down Expand Up @@ -1277,9 +1278,7 @@ private void repack() {

private class ClientDisconnector extends WindowAdapter {

ClientDisconnector() {
super();
}
ClientDisconnector() {}


@Override
Expand Down

0 comments on commit 9df7e80

Please sign in to comment.