Skip to content

Commit

Permalink
Override fill color for bqplot selector tools
Browse files Browse the repository at this point in the history
  • Loading branch information
rosteen committed May 21, 2024
1 parent 5860808 commit fb0a7c2
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 fb0a7c2

Please sign in to comment.