1
0
Fork 0

(svn r18932) -Codechange: Don't constantly redraw drop drop list.

release/1.0
peter1138 2010-01-28 02:30:59 +00:00
parent a3168269f9
commit 07b285c5ca
1 changed files with 14 additions and 5 deletions

View File

@ -260,9 +260,16 @@ struct DropdownWindow : Window {
virtual void OnTick() virtual void OnTick()
{ {
this->vscroll.UpdatePosition(this->scrolling); if (this->scrolling != 0) {
this->scrolling = 0; int pos = this->vscroll.GetPosition();
this->SetDirty();
this->vscroll.UpdatePosition(this->scrolling);
this->scrolling = 0;
if (pos != this->vscroll.GetPosition()) {
this->SetDirty();
}
}
} }
virtual void OnMouseLoop() virtual void OnMouseLoop()
@ -310,8 +317,10 @@ struct DropdownWindow : Window {
if (!this->GetDropDownItem(item)) return; if (!this->GetDropDownItem(item)) return;
} }
this->selected_index = item; if (this->selected_index != item) {
this->SetDirty(); this->selected_index = item;
this->SetDirty();
}
} }
} }
}; };