Removed old markup style from OOS messages.
Fixes bug #18387. Also reverts 2011-09-03T01:51:56Z!Majora700@gmail.com, which is wrong since the dialog has pango markup disabled.
This commit is contained in:
parent
9bcd216280
commit
c936ad468a
2 changed files with 2 additions and 1 deletions
|
@ -64,6 +64,7 @@ Version 1.9.9+svn:
|
|||
* It is now possible to remove multiple installed add-ons at the same
|
||||
time
|
||||
* Slowed units are now tinted to be recognizable at a glance
|
||||
* Fixed: Removed old markup style from OOS messages (bug #18387).
|
||||
* WML engine:
|
||||
* Readded the liminal alignment
|
||||
* Added four-difficulty versions of certain macros: QUANTITY4,
|
||||
|
|
|
@ -532,7 +532,7 @@ void playmp_controller::process_oos(const std::string& err_msg) const {
|
|||
temp_buf << " \n \n"; //and now the "Details:"
|
||||
for(std::vector<std::string>::iterator i=err_lines.begin(); i!=err_lines.end(); ++i)
|
||||
{
|
||||
temp_buf << "<span color='red' size='small'>" << *i << "</span>\n";
|
||||
temp_buf << *i << '\n';
|
||||
}
|
||||
temp_buf << " \n";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue