From 186a831482ad02b7e7e67eb56c149a108052dcd1 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 7 Aug 2014 07:41:06 +0200 Subject: [PATCH] conftypes: Set namedweight correcly for QtFont. --- qutebrowser/config/conftypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/conftypes.py b/qutebrowser/config/conftypes.py index f0441ae85..4452056f0 100644 --- a/qutebrowser/config/conftypes.py +++ b/qutebrowser/config/conftypes.py @@ -691,7 +691,7 @@ class QtFont(Font): match = self.font_regex.match(value) style = match.group('style') weight = match.group('weight') - namedweight = match.group('weight') + namedweight = match.group('namedweight') size = match.group('size') family = match.group('family') if style: