aboutsummaryrefslogtreecommitdiff
path: root/src/UsersSidePanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/UsersSidePanel.cpp')
-rw-r--r--src/UsersSidePanel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/UsersSidePanel.cpp b/src/UsersSidePanel.cpp
index 39c0b86..766539b 100644
--- a/src/UsersSidePanel.cpp
+++ b/src/UsersSidePanel.cpp
@@ -35,16 +35,16 @@ namespace dchat
if(!currentChannel) return;
- const sf::Font &font = ResourceCache::getFont("fonts/Roboto-Regular.ttf");
+ const sf::Font *font = ResourceCache::getFont("fonts/Roboto-Regular.ttf");
sf::Vector2f position(rect.getPosition().x + 10.0f, 10.0f);
for(User *user : currentChannel->getUsers())
{
// TODO: Remove this shit
sf::String str = sf::String::fromUtf8(user->getName().begin(), user->getName().end());
- sf::Text text(str, font, FONT_SIZE * Settings::getScaling());
+ sf::Text text(str, *font, FONT_SIZE * Settings::getScaling());
text.setPosition(position);
window.draw(text);
- position.y += font.getLineSpacing(FONT_SIZE * Settings::getScaling());
+ position.y += font->getLineSpacing(FONT_SIZE * Settings::getScaling());
}
}