diff --git a/src/main/java/org/mastodon/mamut/views/grapher/MamutBranchViewGrapher.java b/src/main/java/org/mastodon/mamut/views/grapher/MamutBranchViewGrapher.java index b8242e63f..5fe609106 100644 --- a/src/main/java/org/mastodon/mamut/views/grapher/MamutBranchViewGrapher.java +++ b/src/main/java/org/mastodon/mamut/views/grapher/MamutBranchViewGrapher.java @@ -109,7 +109,7 @@ static FeatureGraphConfig getFeatureGraphConfig() new FeatureSpecPair( BranchDisplacementDurationFeature.SPEC, displacementSpec, false, false ); final FeatureSpecPair featureSpecY = new FeatureSpecPair( BranchDisplacementDurationFeature.SPEC, durationSpec, false, false ); - return new FeatureGraphConfig( featureSpecX, featureSpecY, GraphDataItemsSource.TRACK_OF_SELECTION, true ); + return new FeatureGraphConfig( featureSpecX, featureSpecY, GraphDataItemsSource.CONTEXT, false ); } @SuppressWarnings( "unchecked" ) diff --git a/src/main/java/org/mastodon/mamut/views/grapher/MamutViewGrapher.java b/src/main/java/org/mastodon/mamut/views/grapher/MamutViewGrapher.java index a33cbb8b8..2b53e9149 100644 --- a/src/main/java/org/mastodon/mamut/views/grapher/MamutViewGrapher.java +++ b/src/main/java/org/mastodon/mamut/views/grapher/MamutViewGrapher.java @@ -116,7 +116,7 @@ static FeatureGraphConfig getFeatureGraphConfig() SpotFrameFeature.SPEC.getProjectionSpecs().iterator().next(), false, false ); final FeatureSpecPair spvy = new FeatureSpecPair( SpotQuickMeanIntensityFeature.SPEC, SpotQuickMeanIntensityFeature.PROJECTION_SPEC, 0, false, false ); - return new FeatureGraphConfig( spvx, spvy, FeatureGraphConfig.GraphDataItemsSource.TRACK_OF_SELECTION, true ); + return new FeatureGraphConfig( spvx, spvy, FeatureGraphConfig.GraphDataItemsSource.CONTEXT, false ); } @SuppressWarnings( "unchecked" )