mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +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:
commit
2fa4aa9f3f
@ -504,7 +504,8 @@ namespace MWGui
|
|||||||
|
|
||||||
ESM::QuickKeys keys;
|
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;
|
ItemWidget* button = mKey[i].button;
|
||||||
|
|
||||||
@ -553,7 +554,8 @@ namespace MWGui
|
|||||||
int i=0;
|
int i=0;
|
||||||
for (ESM::QuickKeys::QuickKey& quickKey : keys.mKeys)
|
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;
|
return;
|
||||||
|
|
||||||
mSelected = &mKey[i];
|
mSelected = &mKey[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user