mirror-chatterino2/widgets/scrollbarhighlight.cpp

17 lines
395 B
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "widgets/scrollbarhighlight.h"
2017-01-03 21:19:33 +01:00
#include "colorscheme.h"
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
2017-04-12 17:46:44 +02:00
ScrollBarHighlight::ScrollBarHighlight(float position, int colorIndex, Style style, QString tag)
: _position(position)
, _colorIndex(std::max(0, std::min(ColorScheme::getInstance().HighlightColorCount, colorIndex)))
, _style(style)
, _tag(tag)
2017-01-11 18:52:09 +01:00
, next(NULL)
2017-01-03 21:19:33 +01:00
{
}
2017-01-18 21:30:23 +01:00
}
}