From 9bcd2162809086ffa619d77a889b08fd60e5eb33 Mon Sep 17 00:00:00 2001 From: "Ignacio R. Morelle" Date: Tue, 1 Nov 2011 18:20:31 +0000 Subject: [PATCH] Hotkey preferences: Make the screenshot hotkey assignment warning... ...correct again alink pointed out that 2011-10-31T19:45:47Z!shadowm@wesnoth.org inverted the meaning of the warning, so invert it again and "try" to explain why modifiers are recommended. --- src/preferences_display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences_display.cpp b/src/preferences_display.cpp index 6dfc5c02fdf..6e27f9cb135 100644 --- a/src/preferences_display.cpp +++ b/src/preferences_display.cpp @@ -426,7 +426,7 @@ void show_hotkeys_dialog (display & disp, config *save_config) if ((newhk.get_id() == hotkey::HOTKEY_SCREENSHOT || newhk.get_id() == hotkey::HOTKEY_MAP_SCREENSHOT) && (mod & any_mod) == 0) { - gui2::show_transient_message(disp.video(), _("Warning"), _("Screenshot hotkeys cannot be combined with the Control, Alt or Meta modifiers.")); + gui2::show_transient_message(disp.video(), _("Warning"), _("Screenshot hotkeys should be combined with the Control, Alt or Meta modifiers to avoid problems.")); } } }