Skip to content

Commit

Permalink
Fixed a color specification
Browse files Browse the repository at this point in the history
  • Loading branch information
bbfrederick committed Nov 13, 2023
1 parent d7aafea commit c35d17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rapidtide/workflows/tidepool.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,11 @@ def updateHistogram():
pct50 = overlays[currentdataset.focusmap].quartiles[1]
pct75 = overlays[currentdataset.focusmap].quartiles[2]
pct98 = overlays[currentdataset.focusmap].robustmax
hist_ax.addLine(x=pct02, pen="008800")
hist_ax.addLine(x=pct02, pen="#008800")
hist_ax.addLine(x=pct25, pen="g")
hist_ax.addLine(x=pct50, pen="g")
hist_ax.addLine(x=pct75, pen="g")
hist_ax.addLine(x=pct98, pen="008800")
hist_ax.addLine(x=pct98, pen="#008800")
updateDispLimits()


Expand Down

0 comments on commit c35d17f

Please sign in to comment.