SOLVED [1.6] Font to Font comparison not working correctly
- 
					
					
					
					
 I think the cmp operator on two fonts is not working correctly ... This works: sf = CurrentFont() print 'Current:', sf for f in AllFonts(): if f == sf: print 'equal:', f else: print 'not equal:', fresult: Current: Font Light equal: Font Light not equal: Font Bold not equal: Font Bookbut this gives the opposite of the expected result: sf = CurrentFont() print 'Current:', sf for f in AllFonts(): if f != sf: print 'not equal:', f else: print 'equal:', fresult: Current: Font Light not equal: Font Light equal: Font Bold equal: Font Book
 
- 
					
					
					
					
 He Jens This was already posted on the beta list and solved in the developers beta. 
 An update will be released soon...
 
- 
					
					
					
					
 He Jens This was already posted on the beta list and solved in the developers beta. 
 An update will be released soon...