Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

qupathExtension {
name = "qupath-extension-training"
version = "0.1.0"
version = "0.1.1"
group = "io.github.qupath"
description = "A QuPath extension to help learn how to use the software"
automaticModule = "qupath.extension.training"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/qupath/ext/training/ui/tour/GuiTourCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import org.slf4j.LoggerFactory;
import qupath.fx.controls.tour.GuiTour;
import qupath.fx.controls.tour.TourItem;
import qupath.fx.utils.FXUtils;
import qupath.lib.gui.QuPathGUI;
import qupath.lib.gui.viewer.tools.PathTools;

Expand Down Expand Up @@ -186,6 +187,7 @@ private Stage createStage() {
stage.setTitle(getTitle());
var scene = new Scene(tour);
stage.setScene(scene);
FXUtils.addCloseWindowShortcuts(stage);
return stage;
}

Expand Down
Loading