plot: Remove dead colormap code from PlotView

This commit is contained in:
Mike Walters
2016-03-01 21:54:37 +00:00
parent cf55504cde
commit dac5c402db
2 changed files with 1 additions and 7 deletions

View File

@@ -32,12 +32,7 @@
PlotView::PlotView()
{
for (int i = 0; i < 128; i++) {
colormap[i] = qRgb(i/2, i*1.5, i*1.5);
}
for (int i = 128; i < 256; i++) {
colormap[i] = qRgb(64 + (i-128)*1.5, 192+(i-128)/2, 192+(i-128)/2);
}
}
void PlotView::refreshSources()