Fix the key for toggling team bars being incorrectly described in the settings page
authorWuzzy <almikes@aol.com>
Fri, 22 Sep 2017 19:26:57 +0200
changeset 12491 24cd4840d3e2
parent 12490 b4eb289b5913
child 12492 47be9f3e61e9
Fix the key for toggling team bars being incorrectly described in the settings page
ChangeLog.txt
QTfrontend/binds.cpp
--- a/ChangeLog.txt	Fri Sep 22 19:17:06 2017 +0200
+++ b/ChangeLog.txt	Fri Sep 22 19:26:57 2017 +0200
@@ -43,7 +43,6 @@
  * Fixed hedgehogs not saying “Stupid” and not displaying announcer message for inflicting self-harm
  * Fixed incorrect time box tooltip when in Sudden Death
  * Remove buggy /finish chat command
- * Fix "hedgehog info" key toggling the team bars (team bars are now toggled with precise + hedgehog info)
  * Various other fixes
 
 Highlander:
@@ -233,6 +232,7 @@
  * Fix language names in language list being always in English
  * Prevent starting game with >48 hogs (because engine doesn't support it yet)
  * Team editor Fix flag being selectable for computer players although it had no effect
+ * Fix the key for toggling team bars being incorrectly described
 
 Content Creation:
  + Theme objects can now have more than 1 in-land rect specified. You can specify the amount in theme.cfg by adding another number (and ,) before the first rect
--- a/QTfrontend/binds.cpp	Fri Sep 22 19:17:06 2017 +0200
+++ b/QTfrontend/binds.cpp	Fri Sep 22 19:26:57 2017 +0200
@@ -66,7 +66,7 @@
     {"fullscr",   "f12",        QT_TRANSLATE_NOOP("binds", "change mode"),     NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Toggle fullscreen mode:")},
     {"capture",   "c",          QT_TRANSLATE_NOOP("binds", "capture"),         NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Take a screenshot:")},
     {"+speedup",  "s",          QT_TRANSLATE_NOOP("binds", "speed up replay"),         NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Demo replay:")},
-    {"rotmask",   "delete",     QT_TRANSLATE_NOOP("binds", "hedgehog info"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Toggle labels above hedgehogs:")},
+    {"rotmask",   "delete",     QT_TRANSLATE_NOOP("binds", "toggle team bars"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Heads-up display:")},
 #ifdef VIDEOREC
     {"record",    "r",          QT_TRANSLATE_NOOP("binds", "record"),          NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Record video:")}
 #endif