smartfs update, fix issue with complex images

master
Alexander Weber 2018-08-27 20:01:03 +02:00
parent 4cd3f8bb6a
commit da2e1cd480
1 changed files with 3 additions and 3 deletions

View File

@ -885,7 +885,7 @@ smartfs.element("button", {
self.data.pos.x..","..self.data.pos.y..";"..
self.data.size.w..","..self.data.size.h..";"
if self.data.image then
specstring = specstring..self.data.image..";"
specstring = specstring..minetest.formspec_escape(self.data.image)..";"
elseif self.data.item then
specstring = specstring..self.data.item..";"
end
@ -1096,7 +1096,7 @@ smartfs.element("image", {
";"..
self.data.size.w..","..self.data.size.h..
";"..
self.data.value..
minetest.formspec_escape(self.data.value)..
"]"
else
return "image["..
@ -1104,7 +1104,7 @@ smartfs.element("image", {
";"..
self.data.size.w..","..self.data.size.h..
";"..
self.data.value..
minetest.formspec_escape(self.data.value)..
"]"
end
end,