mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
parent
22328c4b13
commit
a8e902c579
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ namespace drawtypes {
|
|||
} else if (m_gradient) {
|
||||
size_t color = 0;
|
||||
for (size_t i = 0; i < fill_width; i++) {
|
||||
if (i % m_colorstep == 0)
|
||||
if (i % m_colorstep == 0 && color < m_colors.size())
|
||||
m_fill->m_foreground = m_colors[color++];
|
||||
m_builder->node(m_fill);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue