mirror of https://github.com/OpenTTD/OpenTTD
(svn r14209) -Feature(tte): doubleclick to join selected server/company
parent
744b3527e5
commit
7fa98e33ce
|
@ -530,6 +530,14 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
virtual void OnDoubleClick(Point pt, int widget)
|
||||
{
|
||||
if (widget == NGWW_MATRIX) {
|
||||
/* is the Join button enabled? */
|
||||
if (!this->IsWidgetDisabled(NGWW_JOIN)) this->OnClick(pt, NGWW_JOIN);
|
||||
}
|
||||
}
|
||||
|
||||
virtual void OnDropdownSelect(int widget, int index)
|
||||
{
|
||||
switch (widget) {
|
||||
|
@ -1211,6 +1219,14 @@ struct NetworkLobbyWindow : public Window {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void OnDoubleClick(Point pt, int widget)
|
||||
{
|
||||
if (widget == NLWW_MATRIX) {
|
||||
/* is the Join button enabled? */
|
||||
if (!this->IsWidgetDisabled(NLWW_JOIN)) this->OnClick(pt, NLWW_JOIN);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
static const Widget _network_lobby_window_widgets[] = {
|
||||
|
|
Loading…
Reference in New Issue