diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/graphics.h | 2 | ||||
-rw-r--r-- | src/gui/widgets/avatarlistbox.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/graphics.h b/src/graphics.h index 3adc0ebc..8bacfb9c 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -193,6 +193,8 @@ class Graphics : public gcn::SDLGraphics */ virtual SDL_Surface *getScreenshot(); + gcn::Font *getFont() { return mFont; } + protected: SDL_Surface *mScreen; int mWidth; diff --git a/src/gui/widgets/avatarlistbox.cpp b/src/gui/widgets/avatarlistbox.cpp index 69c3dfde..2c82d79c 100644 --- a/src/gui/widgets/avatarlistbox.cpp +++ b/src/gui/widgets/avatarlistbox.cpp @@ -115,7 +115,7 @@ void AvatarListBox::draw(gcn::Graphics *gcnGraphics) // Draw Name graphics->drawText(text, 15, y); - width = getFont()->getWidth(text) + 17; // Extra right padding + width = graphics->getFont()->getWidth(text) + 17; // Extra right padding if (width > newWidth) { |