Skip to content

Commit 270d8e3

Browse files
Rename box
1 parent ea8dcdc commit 270d8e3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/qupath/ext/bioimageio/BioimageIoPane.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class BioimageIoPane extends BorderPane {
7373
@FXML
7474
private Button imageJButton;
7575
@FXML
76-
private HBox resolutionBox;
76+
private HBox downsampleBox;
7777
@FXML
7878
private HBox pixelSizeBox;
7979
@FXML
@@ -156,7 +156,7 @@ private void configurePixelSize(Model model) {
156156
resolutionSectionBox.getChildren().remove(pixelSizeBox);
157157
} else {
158158
// if using pixel size, we're not using downsample
159-
resolutionSectionBox.getChildren().remove(resolutionBox);
159+
resolutionSectionBox.getChildren().remove(downsampleBox);
160160
}
161161
double defaultValue = (xsize + ysize) / 2;
162162
pixelSizeSpinner.getValueFactory().setValue(defaultValue);

src/main/resources/qupath/ext/bioimageio/bioimageio.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</valueFactory>
3939
</Spinner>
4040
</HBox>
41-
<HBox alignment="CENTER_LEFT" styleClass="standard-spacing" fx:id="resolutionBox">
41+
<HBox alignment="CENTER_LEFT" styleClass="standard-spacing" fx:id="downsampleBox">
4242
<Label text="%ui.section.input-downsample-description" wrapText="true"/>
4343
<Spinner fx:id="downsampleSpinner" prefWidth="100.0" >
4444
<tooltip>

0 commit comments

Comments
 (0)