Skip to content

Commit

Permalink
Dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
artem78 committed Jan 11, 2024
1 parent 8c82eea commit 4a8f74a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uAutoScreen.pas
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ procedure TMainForm.MakeScreenshot;
if not Timer.Enabled then // Manual capture
begin
ErrMsg := {'Execution of custom command failed: ' +} E.Message;
MessageDlg('', ErrMsg, mtWarning, [mbOK], '');
MessageDlg('Auto Screenshot', ErrMsg, mtWarning, [mbOK], '');
end;
end;
end;
Expand Down Expand Up @@ -1902,7 +1902,7 @@ function TMainForm.ConfirmExit: Boolean;
begin
YesStr := Localizer.I18N('Yes');
NoStr := Localizer.I18N('No');
Result := QuestionDlg('', Localizer.I18N('ExitConfirmation'), mtConfirmation,
Result := QuestionDlg('Auto Screenshot', Localizer.I18N('ExitConfirmation'), mtConfirmation,
[mrYes, YesStr, mrNo, NoStr, 'IsDefault'],
0) = mrYes;
end;
Expand Down

0 comments on commit 4a8f74a

Please sign in to comment.