Merge with 3.5

This commit is contained in:
Terry Jan Reedy 2016-05-22 14:35:43 -04:00
commit 9fa149dd24
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ class IdleConf:
actualFont = Font.actual(f)
family = actualFont['family']
size = actualFont['size']
if size < 0:
if size <= 0:
size = 10 # if font in pixels, ignore actual size
bold = actualFont['weight']=='bold'
return (family, size, 'bold' if bold else 'normal')