Skip to content

Commit

Permalink
Revert "delay overwriting existing registry item"
Browse files Browse the repository at this point in the history
This reverts commit 4de13b3.
  • Loading branch information
kecnry committed Mar 11, 2024
1 parent 5a316f8 commit 8564edd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lcviz/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class LCviz(ConfigHelper):
'tab_headers': True},
'dense_toolbar': False,
'context': {'notebook': {'max_height': '600px'}}},
'toolbar': ['g-data-tools', 'g-subset-tools', 'lcviz-viewer-creator', 'lcviz-coords-info'],
'toolbar': ['g-data-tools', 'g-subset-tools', 'g-viewer-creator', 'lcviz-coords-info'],
'tray': ['lcviz-metadata-viewer', 'flux-column',
'lcviz-plot-options', 'lcviz-subset-plugin',
'lcviz-markers', 'flatten', 'frequency-analysis', 'ephemeris',
Expand Down
2 changes: 1 addition & 1 deletion lcviz/plugins/viewer_creator/viewer_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__all__ = ['ViewerCreator']


@tool_registry('lcviz-viewer-creator')
@tool_registry('g-viewer-creator', overwrite=True) # overwrite requires upstream changes, we can do without if we just lose the tooltip
class ViewerCreator(ViewerCreator):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Expand Down

0 comments on commit 8564edd

Please sign in to comment.