Skip to content

Commit

Permalink
Fixed|Console: Bold style not undone in styled command printout
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 5, 2013
1 parent 20da89d commit 8d42670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/con_data.cpp
Expand Up @@ -1598,7 +1598,7 @@ de::String Con_CmdAsStyledText(ccmd_t *cmd)
char const *str;
if((str = DH_GetString(DH_Find(cmd->name), HST_DESCRIPTION)))
{
return de::String(_E(b) "%1 " _E(>) _E(2) "%2" _E(.) _E(<)).arg(cmd->name).arg(str);
return de::String(_E(b) "%1 " _E(.) _E(>) _E(2) "%2" _E(.) _E(<)).arg(cmd->name).arg(str);
}
else
{
Expand Down

0 comments on commit 8d42670

Please sign in to comment.