Fixup 88d1035
Lack of space after 'span' caused invalid markup if the color string wasn't added.
This commit is contained in:
parent
22a99d4472
commit
f983f22981
1 changed files with 2 additions and 2 deletions
|
@ -317,10 +317,10 @@ void context_manager::expand_open_maps_menu(std::vector<config>& items, int i)
|
|||
const std::string label = ss.str();
|
||||
|
||||
ss.str("");
|
||||
ss << " [<span";
|
||||
ss << " [<span ";
|
||||
|
||||
if(changed) {
|
||||
ss << " color='#f00' ";
|
||||
ss << "color='#f00' ";
|
||||
}
|
||||
|
||||
ss << "size='large'>" << font::unicode_bullet << "</span>]";
|
||||
|
|
Loading…
Add table
Reference in a new issue