diff options
author | rubidium <rubidium@openttd.org> | 2009-11-28 13:54:28 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-28 13:54:28 +0000 |
commit | 458c73aecb74269a68ce0a8d5a90001fa3b4988e (patch) | |
tree | d3b8791d43ad9a8bfd08aedf49253911455febaa /src/network | |
parent | a427ab751d7905a26bd86d9571412d9bebe0aa03 (diff) | |
download | openttd-458c73aecb74269a68ce0a8d5a90001fa3b4988e.tar.xz |
(svn r18318) -Codechange: add an enum value for manual window placement
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_chat_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network_chat_gui.cpp b/src/network/network_chat_gui.cpp index d66211f95..13405cc9e 100644 --- a/src/network/network_chat_gui.cpp +++ b/src/network/network_chat_gui.cpp @@ -543,7 +543,7 @@ static const NWidgetPart _nested_chat_window_widgets[] = { }; static const WindowDesc _chat_window_desc( - WDP_CENTER, 0, 640, 14, // x, y, width, height + WDP_MANUAL, WDP_MANUAL, 640, 14, // x, y, width, height WC_SEND_NETWORK_MSG, WC_NONE, 0, _nested_chat_window_widgets, lengthof(_nested_chat_window_widgets) |