Replace a hardcoded string with font::unicode_bullet

This is just clean-up to match the preferred coding style.
This commit is contained in:
Steve Cotton 2021-12-22 19:05:11 +01:00
parent be15bb53df
commit d44720f81c

View file

@ -196,7 +196,7 @@ static config unit_type(const unit* u)
if(const auto& notes = u->unit_special_notes(); !notes.empty()) {
tooltip << "\n\n" << _("Special Notes:") << '\n';
for(const auto& note : notes) {
tooltip << " " << note << '\n';
tooltip << font::unicode_bullet << " " << note << '\n';
}
}
return text_report(str.str(), tooltip.str(), has_variations_prefix + "unit_" + u->type_id());