Fix: About Form, copy to clipboard text for git

This commit is contained in:
Martin 2021-09-14 15:43:45 +02:00
parent 2bb1f2ea36
commit 3475b86dc5

View File

@ -228,7 +228,7 @@ end;
procedure TAboutForm.miVerToClipboardClick(Sender: TObject);
begin
Clipboard.AsText := 'Lazarus ' + LazarusVersionStr + ' r' + LazarusRevisionStr +
Clipboard.AsText := 'Lazarus ' + LazarusVersionStr + ' (rev ' + LazarusRevisionStr + ')' +
' FPC ' + {$I %FPCVERSION%} + ' ' + PlatformLabel.Caption;
end;