summaryrefslogtreecommitdiff
path: root/src/gui/widgets/skilllistbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/skilllistbox.h')
-rw-r--r--src/gui/widgets/skilllistbox.h23
1 files changed, 17 insertions, 6 deletions
diff --git a/src/gui/widgets/skilllistbox.h b/src/gui/widgets/skilllistbox.h
index 344bffa59..e012aabd3 100644
--- a/src/gui/widgets/skilllistbox.h
+++ b/src/gui/widgets/skilllistbox.h
@@ -133,7 +133,6 @@ class SkillListBox final : public ListBox
}
}
- graphics->setColorAll(mTextColor, mTextColor2);
for (int i = 0, y = 1 + mPadding;
i < model->getNumberOfElements();
++i, y += getRowHeight())
@@ -144,11 +143,19 @@ class SkillListBox final : public ListBox
const SkillData *const data = e->data;
const std::string &description = data->description;
graphics->drawImage(data->icon, mPadding, y);
- font->drawString(graphics, data->name, mTextPadding, y);
+ font->drawString(graphics,
+ mTextColor,
+ mTextColor2,
+ data->name,
+ mTextPadding, y);
if (!description.empty())
{
- font->drawString(graphics, description,
- mTextPadding, y + space);
+ font->drawString(graphics,
+ mTextColor,
+ mTextColor2,
+ description,
+ mTextPadding,
+ y + space);
}
if (e->skillLevelWidth < 0)
@@ -157,8 +164,12 @@ class SkillListBox final : public ListBox
e->skillLevelWidth = font->getWidth(e->skillLevel) + 1;
}
- font->drawString(graphics, e->skillLevel, width2
- - e->skillLevelWidth, y);
+ font->drawString(graphics,
+ mTextColor,
+ mTextColor2,
+ e->skillLevel,
+ width2 - e->skillLevelWidth,
+ y);
}
}
}