(svn r15312) -Codechange: Handle closing of drop down menus when clicking in a window in a single place, instead of in the OnClick event for some windows. This standardises behaviour so that clicking anywhere in a window will close its drop down menu, which happened before for some windows but not all. In addition the dubious feature of hiding a drop down menu by opening the same menu has been removed. This only caused wasted CPU cycles as a whole new list was generated and then destroyed. Breathe.
This commit is contained in:
@@ -839,7 +839,6 @@ public:
|
||||
|
||||
virtual void OnClick(Point pt, int widget)
|
||||
{
|
||||
if (this->widget[widget].type != WWT_DROPDOWN) HideDropDownMenu(this);
|
||||
switch (widget) {
|
||||
case ORDER_WIDGET_ORDER_LIST: {
|
||||
ResetObjectToPlace();
|
||||
|
Reference in New Issue
Block a user