Merge remote-tracking branch 'arzyu/patch-1' into develop

develop
lethosor 2021-07-05 15:56:37 -04:00
commit 8689a019f5
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
2 changed files with 3 additions and 2 deletions

@ -38,6 +38,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences:
- Fixed an issue preventing some external scripts from creating zones and other abstract buildings (see note about room definitions under "Internals")
- `buildingplan`: fixed an issue where planned constructions designated with DF's sizing keys (``umkh``) would sometimes be larger than requested
- `buildingplan`: fixed an issue preventing other plugins like `automaterial` from planning constructions if the "enable all" buildingplan setting was turned on
- `buildingplan`: ensure navigation keys work properly in the materials selection screen when alternate keybindings are used
- `command-prompt`: fixed issues where overlays created by running certain commands (e.g. `gui/liquids`, `gui/teleport`) would not update the parent screen correctly
- `dwarfvet`: fixed a crash that could occur with hospitals overlapping with other buildings in certain ways
- `orders`: don't crash when importing orders with malformed IDs

@ -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();