File diff r10546:a4ec290c1c46 → r10547:46e9c74ed423
src/window.cpp
Show inline comments
 
@@ -24,6 +24,7 @@
 
#include "window_func.h"
 
#include "tilehighlight_func.h"
 
#include "network/network.h"
 
#include "querystring_gui.h"
 

	
 
#include "table/sprites.h"
 

	
 
@@ -184,6 +185,13 @@ static void DispatchLeftClickEvent(Windo
 
			}
 
		} else if (wi->type == WWT_SCROLLBAR || wi->type == WWT_SCROLL2BAR || wi->type == WWT_HSCROLLBAR) {
 
			ScrollbarClickHandler(w, wi, x, y);
 
		} else if (wi->type == WWT_EDITBOX)	{
 
			/* Open the OSK window if clicked on an edit box */
 
			QueryStringBaseWindow *qs = dynamic_cast<QueryStringBaseWindow*>(w);
 
			if (qs != NULL) {
 
				const int widget_index = wi - w->widget;
 
				qs->OnOpenOSKWindow(widget_index);
 
			}
 
		}
 

	
 
		if (w->desc_flags & WDF_STD_BTN) {