(svn r18090) -Fix: Only allow raising of WWT_* nested widgets.

This commit is contained in:
alberth 2009-11-15 13:08:50 +00:00
parent b812a48a8d
commit 8415a2238f
1 changed files with 2 additions and 1 deletions

View File

@ -250,7 +250,8 @@ void Window::RaiseButtons(bool autoraise)
}
if (this->nested_array != NULL) {
for (uint i = 0; i < this->nested_array_size; i++) {
if (this->nested_array[i] != NULL && (!autoraise || (this->nested_array[i]->type & WWB_PUSHBUTTON)) && this->IsWidgetLowered(i)) {
if (this->nested_array[i] != NULL && (this->nested_array[i]->type & ~WWB_PUSHBUTTON) < WWT_LAST &&
(!autoraise || (this->nested_array[i]->type & WWB_PUSHBUTTON)) && this->IsWidgetLowered(i)) {
this->RaiseWidget(i);
this->SetWidgetDirty(i);
}