--- a/src/network/network_gui.cpp Sun Aug 31 20:08:24 2008 +0000
+++ b/src/network/network_gui.cpp Sun Aug 31 20:54:01 2008 +0000
@@ -530,6 +530,14 @@
}
}
+ 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 @@
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[] = {