XftFontDescription.st
changeset 8643 b070565a2047
parent 8615 6cb5118a50a1
child 8646 83a5e2fb1f11
--- a/XftFontDescription.st	Thu Feb 28 18:15:03 2019 +0100
+++ b/XftFontDescription.st	Thu Feb 28 18:15:19 2019 +0100
@@ -709,17 +709,18 @@
 !XftFontDescription methodsFor:'converting'!
 
 asNonXftFont
-    "in some situations, we do not want an Xft font..."
+    "in some situations, we do not want an Xft font.
+     Return an abstract fontDescription corresponding to the receiver"
 
     |newFont|
 
     newFont := Font
-		    family:family
-		    face:face
-		    style:style
-		    size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size])
-		    sizeUnit:sizeUnit
-		    encoding:encoding.
+                    family:family
+                    face:face
+                    style:style
+                    size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size])
+                    sizeUnit:sizeUnit
+                    encoding:encoding.
     newFont isForceNonXFTFont:true.
     ^ newFont
 
@@ -735,6 +736,7 @@
    "
 
     "Modified (comment): / 12-02-2017 / 22:14:47 / cg"
+    "Modified (comment): / 28-02-2019 / 18:13:18 / Claus Gittinger"
 ! !
 
 !XftFontDescription methodsFor:'error reporting'!