mirror-chatterino2/scrollbarhighlight.cpp

14 lines
382 B
C++
Raw Normal View History

2017-01-03 21:19:33 +01:00
#include "scrollbarhighlight.h"
#include "colorscheme.h"
2017-01-11 18:52:09 +01:00
ScrollBarHighlight::ScrollBarHighlight(float position, int colorIndex,
Style style, QString tag)
2017-01-18 04:33:30 +01:00
: position(position)
, colorIndex(std::max(
2017-01-11 18:52:09 +01:00
0, std::min(ColorScheme::instance().HighlightColorCount, colorIndex)))
2017-01-18 04:33:30 +01:00
, style(style)
, tag(tag)
2017-01-11 18:52:09 +01:00
, next(NULL)
2017-01-03 21:19:33 +01:00
{
}