Skip to content

Commit

Permalink
Remove workarounds related to stretch histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Oct 26, 2023
1 parent a629072 commit 911b089
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions jdaviz/configs/default/plugins/plot_options/plot_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,6 @@ def state_attr_for_line_visible(state):
self.stretch_histogram.tools_nested,
["jdaviz:stretch_bounds"])

# NOTE: this is a current workaround so the histogram viewer doesn't crash when replacing
# data. Note also that passing x=[0] fails on SOME machines, so we'll pass [0, 1] instead
self.stretch_histogram._add_data('ref', x=[0, 1])
self.stretch_histogram.layers['ref'].state.visible = False
self.stretch_histogram._add_data('histogram', x=[0, 1])

self.stretch_histogram.add_line('vmin', x=[0, 0], y=[0, 1], ynorm=True, color='#c75d2c')
Expand Down Expand Up @@ -645,9 +641,7 @@ def _update_stretch_histogram(self, msg={}):
# change the x_att to the dummy 'ref' dataset then change it back to
# the latest ComponentID after.

self.stretch_histogram.viewer.state.x_att = self.stretch_histogram.app.data_collection['ref'].id['x'] # noqa: E501
self.stretch_histogram._update_data('histogram', x=sub_data)
self.stretch_histogram.viewer.state.x_att = self.stretch_histogram.app.data_collection['histogram'].id['x'] # noqa: E501

if len(sub_data) > 0:
interval = PercentileInterval(95)
Expand Down

0 comments on commit 911b089

Please sign in to comment.