mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 21:45:32 +00:00
fix updateActivatedQuickKey() crash
keyboard numbers don't start at zero...
This commit is contained in:
parent
24d5fb09da
commit
ed71656ea6
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ namespace MWGui
|
|||
|
||||
for (int i = 0; i < 10; ++i)
|
||||
{
|
||||
mKey[i].index = i;
|
||||
mKey[i].index = i+1;
|
||||
getWidget(mKey[i].button, "QuickKey" + MyGUI::utility::toString(i+1));
|
||||
mKey[i].button->eventMouseButtonClick += MyGUI::newDelegate(this, &QuickKeysMenu::onQuickKeyButtonClicked);
|
||||
|
||||
|
@ -143,7 +143,7 @@ namespace MWGui
|
|||
MyGUI::FloatCoord(0,0,1,1), MyGUI::Align::Default);
|
||||
|
||||
textBox->setTextAlign(MyGUI::Align::Center);
|
||||
textBox->setCaption(MyGUI::utility::toString(key->index + 1));
|
||||
textBox->setCaption(MyGUI::utility::toString(key->index));
|
||||
textBox->setNeedMouseFocus(false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue