diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-02-11 21:10:06 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-02-11 21:10:06 +0200 |
commit | 41f4caebcbba410c6bbc398a6184439cb62b03eb (patch) | |
tree | ae33a22bc2b5a8d3be6a7369b23f20bbdcd847bd /src | |
parent | 6e2cd159022b7dd438302eee2522b7886eafd8e3 (diff) | |
download | minetest-41f4caebcbba410c6bbc398a6184439cb62b03eb.tar.gz minetest-41f4caebcbba410c6bbc398a6184439cb62b03eb.tar.bz2 minetest-41f4caebcbba410c6bbc398a6184439cb62b03eb.zip |
disabled work wrap to show every line of chat in any case
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9aabc6743..24310b53e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1764,7 +1764,8 @@ int main(int argc, char *argv[]) gui::IGUIStaticText *guitext_chat = guienv->addStaticText(
L"",
core::rect<s32>(0,0,0,0),
- false, true);
+ false, false); // Disable word wrap as of now
+ //false, true);
guitext_chat->setBackgroundColor(video::SColor(96,0,0,0));
core::list<ChatLine> chat_lines;
|