Lack of space after 'span' caused invalid markup if the color string wasn't added.
This commit is contained in:
Charles Dang 2017-05-02 20:23:18 +11:00
parent 22a99d4472
commit f983f22981

View file

@ -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>]";