This commit is contained in:
Hisham Muhammad 2016-02-18 23:46:36 -02:00
commit 34431dc7fd
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ bool Panel_onKey(Panel* this, int key) {
}
// ensure selection within bounds
if (this->selected < 0) {
if (this->selected < 0 || size == 0) {
this->selected = 0;
this->needsRedraw = true;
} else if (this->selected >= size) {