summaryrefslogtreecommitdiff
path: root/src/gui/guiFormSpecMenu.cpp
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-08-15 20:06:09 +0100
committerrubenwardy <rw@rubenwardy.com>2018-08-15 20:06:09 +0100
commit28a3c4963e0f4b5c82762432a3b10db1070cf012 (patch)
tree5bf3f63a44a1779f0023f6214ae219ab73a485da /src/gui/guiFormSpecMenu.cpp
parent4e2eeee3cc338b95e40a662c37eb4c6c3e7b4101 (diff)
downloadminetest-28a3c4963e0f4b5c82762432a3b10db1070cf012.tar.gz
minetest-28a3c4963e0f4b5c82762432a3b10db1070cf012.tar.bz2
minetest-28a3c4963e0f4b5c82762432a3b10db1070cf012.zip
Formspecs: Fix missing trim() when checking for no_prepend[]
Diffstat (limited to 'src/gui/guiFormSpecMenu.cpp')
-rw-r--r--src/gui/guiFormSpecMenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/guiFormSpecMenu.cpp b/src/gui/guiFormSpecMenu.cpp
index f39eb70ab..948ee4030 100644
--- a/src/gui/guiFormSpecMenu.cpp
+++ b/src/gui/guiFormSpecMenu.cpp
@@ -2090,7 +2090,7 @@ void GUIFormSpecMenu::regenerateGui(v2u32 screensize)
break;
std::vector<std::string> parts = split(elements[i], '[');
- if (parts[0] == "no_prepend")
+ if (trim(parts[0]) == "no_prepend")
enable_prepends = false;
else
break;