Skip to content

Commit

Permalink
Campaign Difficulty: restore the description parentheses on request
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed May 25, 2018
1 parent 74833bd commit 01a9666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/campaign_difficulty.cpp
Expand Up @@ -141,7 +141,7 @@ void campaign_difficulty::pre_show(window& window)
const std::string descrip_text = d["old_markup"].to_bool() || d["description"].empty()
? d["description"]
: (formatter() <<
font::span_color(font::GRAY_COLOR) << d["description"].str() << "</span>").str();
font::span_color(font::GRAY_COLOR) << "(" << d["description"].str() << ")</span>").str();

item["label"] = descrip_text;
data.emplace("description", item);
Expand Down

0 comments on commit 01a9666

Please sign in to comment.