aboutsummaryrefslogtreecommitdiff
path: root/src/Channel.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-05-07 23:00:21 +0200
committerdec05eba <dec05eba@protonmail.com>2018-05-07 23:01:04 +0200
commit2b7d030551a357272f9cc39e347855bd2e3faba2 (patch)
tree93d9eabaf6ba62629b9258a4314338ac8f89fc2a /src/Channel.cpp
parent29bd3e7c65af79b3f8837c7786ffbda3c93c3ebb (diff)
Improve text editing, use Text object for chatbar
Improve text rendering by not using floating point position
Diffstat (limited to 'src/Channel.cpp')
-rw-r--r--src/Channel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Channel.cpp b/src/Channel.cpp
index 2426981..e433aee 100644
--- a/src/Channel.cpp
+++ b/src/Channel.cpp
@@ -185,7 +185,7 @@ namespace dchat
void Channel::draw(sf::RenderWindow &window, Cache &cache)
{
messageBoard.draw(window, cache);
- chatbar.draw(window);
+ chatbar.draw(window, cache);
}
void Channel::setCurrent(Channel *channel)