From 94a5f66427ec48fae8d939254916c48fcdf5b1ce Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 16 Dec 2008 17:58:27 +0000 Subject: (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. --- src/signs_gui.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/signs_gui.cpp') diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp index e57c4bfaf..07ab6904b 100644 --- a/src/signs_gui.cpp +++ b/src/signs_gui.cpp @@ -199,7 +199,6 @@ struct SignWindow : QueryStringBaseWindow, SignList { SignWindow(const WindowDesc *desc, const Sign *si) : QueryStringBaseWindow(MAX_LENGTH_SIGN_NAME_BYTES, desc) { - SetBit(_no_scroll, SCROLL_EDIT); this->caption = STR_280B_EDIT_SIGN_TEXT; this->afilter = CS_ALPHANUMERAL; this->LowerWidget(QUERY_EDIT_SIGN_WIDGET_TEXT); @@ -208,11 +207,6 @@ struct SignWindow : QueryStringBaseWindow, SignList { this->FindWindowPlacementAndResize(desc); } - ~SignWindow() - { - ClrBit(_no_scroll, SCROLL_EDIT); - } - void UpdateSignEditWindow(const Sign *si) { char *last_of = &this->edit_str_buf[this->edit_str_size - 1]; // points to terminating '\0' -- cgit v1.2.3-54-g00ecf