(svn r7046) -Fix [FS#311]: 'Goto' button in orders window got depressed along with all other
authorDarkvater
Thu, 02 Nov 2006 23:51:05 +0000
changeset 5013 1d20ebec3510
parent 5012 d59cca2ac433
child 5014 27054c09dc66
(svn r7046) -Fix [FS#311]: 'Goto' button in orders window got depressed along with all other
buttons when an existing order was modified (GrimRC)
order_gui.c
--- a/order_gui.c	Wed Nov 01 22:27:16 2006 +0000
+++ b/order_gui.c	Thu Nov 02 23:51:05 2006 +0000
@@ -549,6 +549,17 @@
 		/* Update the scroll + matrix */
 		w->vscroll.cap = (w->widget[2].bottom - w->widget[2].top) / 10;
 		break;
+
+	case WE_TIMEOUT: { // handle button unclick ourselves...
+		// unclick all buttons except for the 'goto' button (7), which is 'persistent'
+		int i;
+		for (i = 0; w->widget[i].type != WWT_LAST; i++) {
+			if (IsWindowWidgetLowered(w, i) && i != 7) {
+				RaiseWindowWidget(w, i);
+				InvalidateWidget(w, i);
+			}
+		}
+	} break;
 	}
 }
 
@@ -574,7 +585,7 @@
 static const WindowDesc _orders_train_desc = {
 	-1,-1, 399, 88,
 	WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
-	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
+	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
 	_orders_train_widgets,
 	OrdersWndProc
 };
@@ -601,7 +612,7 @@
 static const WindowDesc _orders_desc = {
 	-1,-1, 410, 88,
 	WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
-	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
+	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
 	_orders_widgets,
 	OrdersWndProc
 };