diff options
author | rubidium <rubidium@openttd.org> | 2008-12-16 17:58:27 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-12-16 17:58:27 +0000 |
commit | 94a5f66427ec48fae8d939254916c48fcdf5b1ce (patch) | |
tree | 7f6e9a1062fc5034eb21ca5b1895d24cae43f965 /src/network | |
parent | f1c7e4662a379fdc1f59e69c0823b7daae5a4958 (diff) | |
download | openttd-94a5f66427ec48fae8d939254916c48fcdf5b1ce.tar.xz |
(svn r14679) -Fix [FS#2431]: opening the OSK on the chatbox did disable map scrolling (with keyboard) until another window with editbox was opened and closed. Just "refcount" the open edit boxes instead of setting/clearing a bit when opening/closing a window.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_chat_gui.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/network/network_chat_gui.cpp b/src/network/network_chat_gui.cpp index c2ce73a84..02aec095a 100644 --- a/src/network/network_chat_gui.cpp +++ b/src/network/network_chat_gui.cpp @@ -277,7 +277,6 @@ struct NetworkChatWindow : public QueryStringBaseWindow { InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, 0); InvalidateWindowData(WC_NEWS_WINDOW, 0, this->height); - SetBit(_no_scroll, SCROLL_CHAT); // do not scroll the game with the arrow-keys _chat_tab_completion_active = false; @@ -287,7 +286,6 @@ struct NetworkChatWindow : public QueryStringBaseWindow { ~NetworkChatWindow () { InvalidateWindowData(WC_NEWS_WINDOW, 0, 0); - ClrBit(_no_scroll, SCROLL_CHAT); } /** |