# HG changeset patch
# User unc0rr
# Date 1213267805 0
# Node ID 4319810f23c1e41afc4b5dac2161f5f104175da8
# Parent  c16355b0c982179454fbc6354fdecbbc830937f7
 - Fix chat state at start
 - Team bind for history

diff -r c16355b0c982 -r 4319810f23c1 QTfrontend/binds.cpp
--- a/QTfrontend/binds.cpp	Wed Jun 11 22:19:14 2008 +0000
+++ b/QTfrontend/binds.cpp	Thu Jun 12 10:50:05 2008 +0000
@@ -46,6 +46,7 @@
 	{"timer 4",	"4",	QT_TRANSLATE_NOOP("binds", "timer 4 sec"),	false},
 	{"timer 5",	"5",	QT_TRANSLATE_NOOP("binds", "timer 5 sec"),	true},
 	{"chat",	"t",	QT_TRANSLATE_NOOP("binds", "chat"),	false},
+	{"history",	"`",	QT_TRANSLATE_NOOP("binds", "chat history"),	false},
 	{"pause",	"p",	QT_TRANSLATE_NOOP("binds", "pause"),	false},
 	{"+voldown",	"9",	QT_TRANSLATE_NOOP("binds", "volume down"),	false},
 	{"+volup",	"0",	QT_TRANSLATE_NOOP("binds", "volume up"),	false},
diff -r c16355b0c982 -r 4319810f23c1 QTfrontend/binds.h
--- a/QTfrontend/binds.h	Wed Jun 11 22:19:14 2008 +0000
+++ b/QTfrontend/binds.h	Thu Jun 12 10:50:05 2008 +0000
@@ -21,7 +21,7 @@
 
 #include <QString>
 
-#define BINDS_NUMBER 33
+#define BINDS_NUMBER 34
 
 struct BindAction
 {
diff -r c16355b0c982 -r 4319810f23c1 hedgewars/uChat.pas
--- a/hedgewars/uChat.pas	Wed Jun 11 22:19:14 2008 +0000
+++ b/hedgewars/uChat.pas	Thu Jun 12 10:50:05 2008 +0000
@@ -25,7 +25,7 @@
 procedure KeyPressChat(Key: Longword);
 
 var UserNick: shortstring = '';
-	showAll: boolean = true;
+	showAll: boolean = false;
 
 implementation
 uses uMisc, uStore, uConsts, SDLh, uConsole, uKeys;