Skip to content

Commit 0ee8ca0

Browse files
More Direct Confirmation of ROI From File System
1 parent 974ea1e commit 0ee8ca0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

view-simulation-results/src/main/java/org/vcell/N5/reduction/GUI/ROIs/AvailableROIs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public AvailableROIs(){
3131
this.setLayout(new BoxLayout(this.getContentPane(), BoxLayout.Y_AXIS));
3232

3333
if (roiDataModel.getRowCount() == 0){
34-
String message = "There seems to be no ROI's present in ImageJ's ROI manager.\nWould you rather open your ROI directly from the file system.";
35-
int confirm = JOptionPane.showConfirmDialog(this, message, "No ROI's In ROI Manager", JOptionPane.OK_CANCEL_OPTION);
34+
String message = "There seems to be no ROI's present in ImageJ's ROI manager.\nWould you rather open your ROI directly from the file system?";
35+
int confirm = JOptionPane.showConfirmDialog(this, message, "No ROI's In ROI Manager", JOptionPane.YES_NO_OPTION);
3636
if (confirm == JOptionPane.OK_OPTION){
3737
JFileChooser fileChooser = new JFileChooser();
3838
fillROIList(fileChooser);

0 commit comments

Comments
 (0)