Skip to content

Commit

Permalink
enh: only show local features in QuickView Event Feature tab
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed May 16, 2024
1 parent faf82ee commit 2eb1bed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2.16.2
- fix: data export feature selection must default to features_loaded
- enh: only show local features in QuickView Event Feature tab
- enh: show dcnum pipeline identifiers in Analysis view
- enh: add section:key tool tips for analysis view metadata
- enh: added links to docs explaining default export selection
Expand Down
2 changes: 1 addition & 1 deletion shapeout2/gui/quick_view/qv_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ def show_event(self, event):
self.groupBox_trace.hide()
else:
# only use computed features (speed)
fcands = ds.features_loaded
fcands = ds.features_local
feats = [f for f in fcands if f in ds.features_scalar]
lf = sorted([(dclab.dfn.get_feature_label(f), f) for f in feats])
keys = []
Expand Down

0 comments on commit 2eb1bed

Please sign in to comment.