aboutsummaryrefslogtreecommitdiff
path: root/src/UsersSidePanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/UsersSidePanel.cpp')
-rw-r--r--src/UsersSidePanel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/UsersSidePanel.cpp b/src/UsersSidePanel.cpp
index bea6296..f665d1f 100644
--- a/src/UsersSidePanel.cpp
+++ b/src/UsersSidePanel.cpp
@@ -13,7 +13,7 @@ using namespace std;
namespace dchat
{
- const float WIDTH = 200.0f;
+ const float WIDTH = 250.0f;
const unsigned int FONT_SIZE = 20;
void UsersSidePanel::draw(sf::RenderWindow &window)
@@ -37,6 +37,7 @@ namespace dchat
sf::String str = sf::String::fromUtf8(user->getName().begin(), user->getName().end());
sf::Text text(str, *font, FONT_SIZE * Settings::getScaling());
text.setPosition(position);
+ text.setFillColor(sf::Color(15, 192, 252));
window.draw(text);
position.y += floor(font->getLineSpacing(FONT_SIZE * Settings::getScaling()));
}