summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/gui/chat.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a5db191..b423d66f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,7 +3,7 @@
* src/game.cpp, src/gui/guildwindow.h, src/gui/chat.cpp,
src/gui/guildwindow.cpp, src/net/guildhandler.cpp: Fixed up chat
and guilds.
-
+ * src/gui/chat.cpp: Made it possible to move the chat window.
2008-03-31 Philipp Sehmisch <tmw@crushnet.org>
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index d2ec0ec9..f6b54d29 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -49,12 +49,12 @@
#include "../utils/trim.h"
ChatWindow::ChatWindow():
- Window(),
+ Window(""),
mTmpVisible(false)
{
setResizable(true);
setDefaultSize(0, (windowContainer->getHeight() - 123), 600, 100);
- setTitleBarHeight(0);
+ setTitleBarHeight(5);
loadWindowState("Chat");
mChatInput = new ChatInput();