From 871d1cd77b7932d70b8ccc5b783b03b086a12448 Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 6 Oct 2006 21:27:23 +0000 Subject: [PATCH] (svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable widgets, not hide them --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 1d3bfefdba..b8a3f8d376 100644 --- a/window.c +++ b/window.c @@ -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); }