Skip to content

Commit

Permalink
Enable new annotations when imported
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Aug 16, 2023
1 parent 634df31 commit 4196ad6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/plugins/correlation/ui/qml/CorrelationPlugin.qml
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,15 @@ PluginContent
plot.scaleByAttributeName = "";
}
}

function onColumnAnnotationNamesChanged(added, removed)
{
if(added.length > 0)
plot.showColumnAnnotations(added);

if(removed.length > 0)
plot.hideColumnAnnotations(removed);
}
}

property var _plotMenuStateUpdateFns: []
Expand Down

0 comments on commit 4196ad6

Please sign in to comment.