From 4ae4d44aaf375000b72038d9e293cc0265ff33bb Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Tue, 16 Sep 2014 17:06:52 -0400 Subject: [PATCH] fix whitespace Again from commit https://github.com/wesnoth/wesnoth/commit/4e17d42679175534a0215a07cfdfad58a9fc6870#diff-89155afc5a0b890787b4bfa962f217d4R846 --- src/theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.cpp b/src/theme.cpp index f5d824bf5a93..c918002953cb 100644 --- a/src/theme.cpp +++ b/src/theme.cpp @@ -602,7 +602,7 @@ const std::string theme::action::tooltip(size_t index) const { result << hotkey::get_description(items_[index]); if (!hotkey::get_names(items_[index]).empty()) result << "\n" << N_("Hotkey(s): ") << hotkey::get_names(items_[index]); - result << "\n" << tooltip_; + result << "\n" << tooltip_; } else { result << tooltip_; }