GUI: Fix relativePath in integrity JSON request

Also, results size is reduced
This commit is contained in:
Abhinav Chennubhotla 2023-08-23 00:14:57 +05:30 committed by Eugene Sandulenko
parent 6dc1950207
commit d9fb4421f2
No known key found for this signature in database
GPG Key ID: 014D387312D34F08
2 changed files with 4 additions and 4 deletions

View File

@ -192,7 +192,7 @@ void IntegrityDialog::setState(ProcessState state) {
} else
_resultsText->setList(Common::U32StringArray({g_result->errorText}));
if (g_result->error) {
if (g_result->error != 0) {
_copyEmailButton->setVisible(true);
_copyEmailButton->setCmd(kCopyEmailCmd);
}

View File

@ -1836,12 +1836,12 @@
<dialog name = 'GameOptions_IntegrityDialog' overlays = 'Dialog.GameOptions' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 8' spacing = '8'>
<widget name = 'ResultsText'
height = '150'
/>
<widget name = 'WarningText'
height = 'Globals.Line.Height'
/>
<widget name = 'ResultsText'
height = '250'
/>
<widget name = 'StatusText'
height = 'Globals.Line.Height'
/>