# HG changeset patch # User glx # Date 1160170043 0 # Node ID b8695ae61e0dbd29148ae041a25b1f2328e0752e # Parent 4a356495255424cf896b568381b1950593702365 (svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable widgets, not hide them diff -r 4a3564952554 -r b8695ae61e0d window.c --- a/window.c Fri Oct 06 21:10:14 2006 +0000 +++ b/window.c Fri Oct 06 21:27:23 2006 +0000 @@ -25,7 +25,7 @@ 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); }