Skip to content

Commit

Permalink
Added methods back but remove all viewer-specific code
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Aug 16, 2024
1 parent 7359dba commit 41582d5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions glue/core/application_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,3 +350,18 @@ def set_data_color(self, color, alpha):
for data in self.data_collection:
data.style.color = color
data.style.alpha = alpha

def __gluestate__(self, context):
data = self.session.data_collection
from glue.main import _loaded_plugins
return dict(session=context.id(self.session),
data=context.id(data),
plugins=_loaded_plugins)

@classmethod
def __setgluestate__(cls, rec, context):
self = cls(data_collection=context.object(rec['data']))
# manually register the newly-created session, which
# the viewers need
context.register_object(rec['session'], self.session)
return self

0 comments on commit 41582d5

Please sign in to comment.