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:
parent
51bef7cfb2
commit
54e1ca1a65
3 changed files with 66 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue