XftFontDescription.st
changeset 6194 00776088da01
parent 6193 cd4baec11e1e
child 6195 9a14f8e6c10c
--- a/XftFontDescription.st	Sat Jan 04 02:06:40 2014 +0100
+++ b/XftFontDescription.st	Sun Jan 05 22:00:30 2014 +0100
@@ -1,3 +1,5 @@
+'From Smalltalk/X, Version:6.2.3jv.0 on 04-01-2014 at 01:37:36'                 !
+
 "{ Package: 'stx:libview' }"
 
 FontDescription subclass:#XftFontDescription
@@ -387,13 +389,11 @@
                                                DefaultVisual( DISPLAY( displayId), SCREEN (screen) ) ,
                                                DefaultColormap( DISPLAY( displayId), SCREEN (screen) ) ) );
         __STORE(self, __INST(drawId));
-    } else {
-        if ( XftDrawDrawable ( XFT_DRAW ( __INST(drawId) ) ) != DRAWABLE( drawableId ) ) {
-            XftDrawChange( XFT_DRAW( __INST(drawId) ) , DRAWABLE( drawableId ) );
-        }
     }
 
-
+    if ( XftDrawDrawable ( XFT_DRAW ( __INST(drawId) ) ) != DRAWABLE( drawableId ) ) {
+        XftDrawChange( XFT_DRAW( __INST(drawId) ) , DRAWABLE( drawableId ) );
+    }
 
     if ( __isStringLike( aString ) ) {
         string = __stringVal( aString ) + ( __intVal(index1) - 1 );
@@ -1339,11 +1339,11 @@
 !XftFontDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.15 2014-01-04 01:06:40 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.16 2014-01-05 21:00:30 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.15 2014-01-04 01:06:40 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.16 2014-01-05 21:00:30 vrany Exp $'
 ! !