Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/chat.cc')
-rw-r--r--src/client/chat.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/chat.cc b/src/client/chat.cc
index 93ba4b0..137e6b1 100644
--- a/src/client/chat.cc
+++ b/src/client/chat.cc
@@ -183,14 +183,14 @@ void Chat::resize()
const float margin = 8.0f;
math::Vector2f s(size());
- s.x -= margin*2;
- s.y -= margin*2;
+ s[0] -= margin*2;
+ s[1] -= margin*2;
chat_scrollpane->set_location(margin, margin);
- chat_scrollpane->set_size(s.x, s.y - font()->height() *1.5f);
+ chat_scrollpane->set_size(s.width(), s.height() - font()->height() *1.5f);
chat_input->set_location(margin, height() - font()->height() - margin);
- chat_input->set_size(s.x, font()->height());
+ chat_input->set_size(s.width(), font()->height());
}