src/transparency_gui.cpp
changeset 6598 f2be0a6ba79a
parent 6496 40748e256bbe
child 6600 1482680e3303
--- a/src/transparency_gui.cpp	Mon May 07 17:59:50 2007 +0000
+++ b/src/transparency_gui.cpp	Mon May 07 20:25:20 2007 +0000
@@ -23,6 +23,7 @@
 	TTW_WIDGET_BUILDINGS,    ///< Make player buildings and structures transparent
 	TTW_WIDGET_BRIDGES,      ///< Make bridges transparent
 	TTW_WIDGET_STRUCTURES,   ///< Make unmovable structures transparent
+	TTW_WIDGET_END,          ///< End of toggle buttons
 };
 
 /** Toggle the bits of the transparencies variable
@@ -41,7 +42,7 @@
 		case WE_PAINT:
 			/* must be sure that the widgets show the transparency variable changes
 			 * also when we use shortcuts */
-			for (uint i = TTW_WIDGET_SIGNS; i < TTW_WIDGET_STRUCTURES; i++) {
+			for (uint i = TTW_WIDGET_SIGNS; i < TTW_WIDGET_END; i++) {
 				SetWindowWidgetLoweredState(w, i, HASBIT(_transparent_opt, i - TTW_WIDGET_SIGNS));
 			}
 			DrawWindowWidgets(w);