(svn r9812) -Fix (r9679): Obiwan prevented proper display of last transparency button.

This commit is contained in:
peter1138 2007-05-07 20:25:20 +00:00
parent e52a953e99
commit e0a276c1a2
1 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ enum TransparencyToolbarWidgets{
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 @@ static void TransparencyToolbWndProc(Window *w, WindowEvent *e)
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);