Save some gui space by removing the parenthesis around the terrain info.
This commit is contained in:
parent
c9a28f977b
commit
1d216319bc
1 changed files with 3 additions and 3 deletions
|
@ -1392,11 +1392,11 @@ REPORT_GENERATOR(position)
|
|||
int move_cost = u->movement_cost(terrain);
|
||||
int defense = 100 - u->defense_modifier(terrain);
|
||||
if (move_cost < movetype::UNREACHABLE) {
|
||||
str << " (" << defense << "%," << move_cost << ')';
|
||||
str << " " << defense << "%," << move_cost;
|
||||
} else if (mouseover_hex == displayed_unit_hex) {
|
||||
str << " (" << defense << "%,‒)";
|
||||
str << " " << defense << "%,‒";
|
||||
} else {
|
||||
str << " (‒)";
|
||||
str << " ‒";
|
||||
}
|
||||
return text_report(str.str());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue