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/client.cc')
-rw-r--r--src/client/client.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index 2400089..667a060 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -51,7 +51,7 @@ void func_r_restart(std::string const &args)
void func_ui_chat(std::string const &args)
{
if (core::application()->connected()) {
- client()->view()->chat()->set_small(false);
+ client()->view()->chat()->set_small_view(false);
client()->view()->chat()->toggle();
}
}
@@ -59,7 +59,7 @@ void func_ui_chat(std::string const &args)
void func_ui_chatsmall(std::string const &args)
{
if (core::application()->connected()) {
- client()->view()->chat()->set_small(true);
+ client()->view()->chat()->set_small_view(true);
client()->view()->chat()->toggle();
}
}