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

Bump scenery 0.10.1 #568

Merged
merged 2 commits into from
Mar 19, 2024
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
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
exclude("org.lwjgl")
}

val sceneryVersion = "0.9.3"
val sceneryVersion = "0.10.1"
api("graphics.scenery:scenery:$sceneryVersion") {
version { strictly(sceneryVersion) }
exclude("org.biojava.thirdparty", "forester")
Expand Down Expand Up @@ -87,7 +87,6 @@ dependencies {
implementation("net.imagej:imagej-ops")
// implementation("net.imagej:imagej-launcher")
implementation("net.imagej:imagej-ui-swing")
implementation("net.imagej:imagej-legacy")
implementation("io.scif:scifio")
implementation("io.scif:scifio-bf-compat")

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/sc/iview/ui/SwingNodePropertyEditor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ class SwingNodePropertyEditor(private val sciView: SciView) : UIComponent<JPanel
// This will find the group that corresponds to the expandable label. If the type of
// the node is indeed Volume, this must exist.
val parent = inputPanel.component.components.find { it.name == "group:Volume" } as? JPanel
val tfe = TransferFunctionEditor(sceneNode, sceneNode.name)
val tfe = TransferFunctionEditor(sceneNode)
tfe.preferredSize = Dimension(300, 300)

// the next line is a workaround for a ChangeListener being attached to the Show Histogram checkbox,
Expand Down
Loading