Skip to content

Commit

Permalink
tunit_preview_pane: use unicode multip sign instead of em dash for at…
Browse files Browse the repository at this point in the history
…tack/strike label
  • Loading branch information
Vultraz committed Mar 13, 2016
1 parent 02993cb commit 2ffa1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widgets/unit_preview_pane.cpp
Expand Up @@ -172,7 +172,7 @@ void tunit_preview_pane::set_displayed_type(const unit_type* type)
FOREACH(const AUTO& a, type->attacks())
{
str << "<span color='#f5e6c1'>" << a.damage()
<< font::weapon_numbers_sep << a.num_attacks() << " " << a.name() << "</span>" << "\n";
<< utils::unicode_multiplication_sign << a.num_attacks() << " " << a.name() << "</span>" << "\n";

str << "<span color='#a69275'>" << " " << a.range()
<< font::weapon_details_sep << a.type() << "</span>" << "\n";
Expand Down

0 comments on commit 2ffa1ff

Please sign in to comment.