diff options
Diffstat (limited to 'utils/themeeditor/graphics/rbfont.cpp')
-rw-r--r-- | utils/themeeditor/graphics/rbfont.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/themeeditor/graphics/rbfont.cpp b/utils/themeeditor/graphics/rbfont.cpp index 1c2739d118..e8bff40e13 100644 --- a/utils/themeeditor/graphics/rbfont.cpp +++ b/utils/themeeditor/graphics/rbfont.cpp | |||
@@ -155,7 +155,8 @@ RBFont::~RBFont() | |||
155 | delete[] widthData; | 155 | delete[] widthData; |
156 | } | 156 | } |
157 | 157 | ||
158 | RBText* RBFont::renderText(QString text, QColor color, QGraphicsItem *parent) | 158 | RBText* RBFont::renderText(QString text, QColor color, int viewWidth, |
159 | QGraphicsItem *parent) | ||
159 | { | 160 | { |
160 | int firstChar = header.value("firstchar").toInt(); | 161 | int firstChar = header.value("firstchar").toInt(); |
161 | int height = header.value("height").toInt(); | 162 | int height = header.value("height").toInt(); |
@@ -221,6 +222,6 @@ RBText* RBFont::renderText(QString text, QColor color, QGraphicsItem *parent) | |||
221 | startX += widths[i]; | 222 | startX += widths[i]; |
222 | } | 223 | } |
223 | 224 | ||
224 | return new RBText(image, parent); | 225 | return new RBText(image, viewWidth, parent); |
225 | 226 | ||
226 | } | 227 | } |