summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util.c b/util.c
index 4482c9a..12d92ea 100644
--- a/util.c
+++ b/util.c
@@ -302,7 +302,7 @@ faceWeight(FT_Face face)
else if(strcasecmp(prop.u.atom, "light") == 0)
return 300;
else if(strcasecmp(prop.u.atom, "medium") == 0)
- return 500;
+ return 400;
else if(strcasecmp(prop.u.atom, "semibold") == 0)
return 600;
else if(strcasecmp(prop.u.atom, "bold") == 0)
@@ -312,9 +312,9 @@ faceWeight(FT_Face face)
else if(strcasecmp(prop.u.atom, "black") == 0)
return 900;
else
- return 500;
+ return 400;
} else
- return 500; /* for now */
+ return 400; /* for now */
}
int