Skip to content

Commit

Permalink
fix another instance of "overlapping messages", for planning mode
Browse files Browse the repository at this point in the history
This was previously fixed for the accelerated speed hotkey
announcements.

13c044f
  • Loading branch information
cbeck88 committed Oct 13, 2014
1 parent 04faf1d commit b8ca750
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/playsingle_controller.cpp
Expand Up @@ -227,8 +227,7 @@ void playsingle_controller::whiteboard_toggle() {
utils::string_map symbols;
symbols["hotkey"] = hk;

gui_->announce(_("Planning mode activated!"), font::NORMAL_COLOR);
gui_->announce("\n" + vgettext("(press $hotkey to deactivate)", symbols), font::NORMAL_COLOR);
gui_->announce(_("Planning mode activated!") + std::string("\n") + vgettext("(press $hotkey to deactivate)", symbols), font::NORMAL_COLOR);
} else {
gui_->announce(_("Planning mode deactivated!"), font::NORMAL_COLOR);
}
Expand Down

0 comments on commit b8ca750

Please sign in to comment.