]> git.lizzy.rs Git - minetest.git/blobdiff - src/chat.cpp
Optionally specify propagateSunlight area in calcLighting
[minetest.git] / src / chat.cpp
index 0466b6e263e082929e959fa39d1b5277847997dd..b78b90145f2588e57d2de19fd5ad16cd2ba8e937 100644 (file)
@@ -407,6 +407,15 @@ void ChatPrompt::input(wchar_t ch)
        m_nick_completion_end = 0;
 }
 
+void ChatPrompt::input(const std::wstring &str)
+{
+       m_line.insert(m_cursor, str);
+       m_cursor += str.size();
+       clampView();
+       m_nick_completion_start = 0;
+       m_nick_completion_end = 0;
+}
+
 std::wstring ChatPrompt::submit()
 {
        std::wstring line = m_line;