use "move selector" instead of "move cursor"

develop
arzyu 2021-06-23 14:25:45 +08:00 committed by GitHub
parent 2fc5fbacb5
commit c30ac42c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

@ -237,12 +237,12 @@ void ViewscreenChooseMaterial::feed(set<df::interface_key> *input)
Screen::dismiss(this);
}
else if (input->count(interface_key::CURSOR_LEFT))
else if (input->count(interface_key::STANDARDSCROLL_LEFT))
{
--selected_column;
validateColumn();
}
else if (input->count(interface_key::CURSOR_RIGHT))
else if (input->count(interface_key::STANDARDSCROLL_RIGHT))
{
selected_column++;
validateColumn();