1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00

Merge pull request #2606 from Capostrophic/quickkeys

Make sure quick key 0 (tenth quick key) shortcut is not saved or loaded
This commit is contained in:
Andrei Kortunov 2019-11-20 21:28:20 +04:00 committed by GitHub
commit 2fa4aa9f3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -504,7 +504,8 @@ namespace MWGui
ESM::QuickKeys keys;
for (int i=0; i<10; ++i)
// NB: The quick key with index 9 always has Hand-to-Hand type and must not be saved
for (int i=0; i<9; ++i)
{
ItemWidget* button = mKey[i].button;
@ -553,7 +554,8 @@ namespace MWGui
int i=0;
for (ESM::QuickKeys::QuickKey& quickKey : keys.mKeys)
{
if (i >= 10)
// NB: The quick key with index 9 always has Hand-to-Hand type and must not be loaded
if (i >= 9)
return;
mSelected = &mKey[i];