mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-02 20:34:41 +00:00
(svn r15566) -Change: reintroduce space as valid method of selecting 'content' as long as the filter box is not focused. Enter will also work when the filter box is focused.
This commit is contained in:
parent
4bf2f4a166
commit
8fa247c4b1
@ -625,13 +625,17 @@ public:
|
||||
this->list_pos = this->content.Length() - 1;
|
||||
break;
|
||||
|
||||
case WKC_SPACE:
|
||||
case WKC_RETURN:
|
||||
if (keycode == WKC_RETURN || !IsWidgetFocused(NCLWW_FILTER)) {
|
||||
if (this->selected != NULL) {
|
||||
_network_content_client.ToggleSelectedState(this->selected);
|
||||
this->content.ForceResort();
|
||||
this->SetDirty();
|
||||
}
|
||||
return ES_HANDLED;
|
||||
}
|
||||
/* Fall through when pressing space is pressed and filter isn't focused */
|
||||
|
||||
default: {
|
||||
/* Handle editbox input */
|
||||
|
Loading…
Reference in New Issue
Block a user