fixed TPostscriptCanvas.SetFontFace from Eric

git-svn-id: trunk@5408 -
This commit is contained in:
mattias 2004-04-13 20:24:46 +00:00
parent 55f6eb6906
commit b0e5db0b68
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Cliff Baeseman
Colin Western
Curtis White
Darek Mazur
Eric Chapman
GongYu
Hans-Joachim Ott
Jason King

View File

@ -262,7 +262,7 @@ var
MyString: String;
begin
if FFontFace=AValue then exit;
if pos(' ',AValue) > -1 then
if pos(' ',AValue) > 0 then
FFontFace := '('+AValue+')'
else FFontFace:=AValue;