1
0
Fork 0

(svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable widgets, not hide them

release/0.5
glx 2006-10-06 21:27:23 +00:00
parent 30e0a8e952
commit 871d1cd77b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ void CDECL SetWindowWidgetsDisabledState(Window *w, bool disab_stat, int widgets
va_start(wdg_list, widgets);
while (widgets != WIDGET_LIST_END) {
SetWindowWidgetHiddenState(w, widgets, disab_stat);
SetWindowWidgetDisableState(w, widgets, disab_stat);
widgets = va_arg(wdg_list, int);
}