(svn r26167) -Fix [FS#5834]: Certain hotkeys crashed the content GUI when the list was empty.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
frosch 11 years ago
parent ec492bfb77
commit 62c0d42f92

@ -750,7 +750,7 @@ public:
case WID_NCL_NAME:
if (this->content.SortType() == widget - WID_NCL_CHECKBOX) {
this->content.ToggleSortOrder();
this->list_pos = this->content.Length() - this->list_pos - 1;
if (this->content.Length() > 0) this->list_pos = this->content.Length() - this->list_pos - 1;
} else {
this->content.SetSortType(widget - WID_NCL_CHECKBOX);
this->content.ForceResort();
@ -844,7 +844,10 @@ public:
return ES_NOT_HANDLED;
}
if (_network_content_client.Length() == 0) return ES_HANDLED;
if (this->content.Length() == 0) {
this->list_pos = 0; // above stuff may result in "-1".
return ES_HANDLED;
}
this->selected = *this->content.Get(this->list_pos);

Loading…
Cancel
Save