diff options
Diffstat (limited to 'helper.cpp')
-rw-r--r-- | helper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ namespace Helper { Duration dur(offset); QFont font("Monospace", 10); QFontMetrics fm(font); - int width = fm.width(dur.toString()); + int width = fm.horizontalAdvance(dur.toString()); int height = fm.height(); QPainter p(&retval); p.setBrush(QBrush(QColor(255, 255, 255, 70))); |