Skip to content

Commit

Permalink
Merge pull request spacetelescope#2885 from rosteen/change-subset-pre…
Browse files Browse the repository at this point in the history
…view-color

Override fill color for bqplot selector tools
  • Loading branch information
pllim authored May 22, 2024
2 parents d4f399e + fb0a7c2 commit 1c5589e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jdaviz/core/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,23 @@
from glue.config import viewer_tool
from glue.core import HubListener
from glue.viewers.common.tool import Tool
from glue_jupyter.bqplot.common import tools
from glue_jupyter.bqplot.common.tools import (CheckableTool,
HomeTool, BqplotPanZoomMode,
BqplotPanZoomXMode, BqplotPanZoomYMode,
BqplotRectangleMode, BqplotCircleMode,
BqplotEllipseMode, BqplotCircularAnnulusMode,
BqplotXRangeMode, BqplotYRangeMode,
BqplotSelectionTool,
INTERACT_COLOR)
BqplotSelectionTool)
from bqplot.interacts import BrushSelector, BrushIntervalSelector

from jdaviz.core.events import LineIdentifyMessage, SpectralMarksChangedMessage
from jdaviz.core.marks import SpectralLine

__all__ = []

INTERACT_COLOR = "#c75109"
tools.INTERACT_COLOR = INTERACT_COLOR
ICON_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), '..', 'data', 'icons'))


Expand Down

0 comments on commit 1c5589e

Please sign in to comment.