Don't crash on really long release notes

Also wrap URLs and such and don't scroll past the end
This commit is contained in:
Pk11 2022-03-04 19:43:51 -06:00
commit 54e1ca1a65
3 changed files with 66 additions and 4 deletions

View file

@ -97,7 +97,10 @@ void StoreUtils::EntryHandle(bool &showMark, bool &fetch, bool &sFetch, int &mod
}
if ((hDown & KEY_X) || (hDown & KEY_TOUCH && touching(touch, notes))) {
if (entry->GetReleaseNotes() != "") mode = 7;
if (entry->GetReleaseNotes() != "") {
ProcessReleaseNotes(entry->GetReleaseNotes());
mode = 7;
}
}
}