summaryrefslogtreecommitdiff
path: root/builtin/modstore.lua
diff options
context:
space:
mode:
authorsapier <Sapier at GMX dot net>2014-03-04 19:57:39 +0100
committersapier <Sapier at GMX dot net>2014-03-05 18:44:14 +0100
commita4e2198e4102f1dabc8f8720c2ace9c2fca8d999 (patch)
treeb0287c27c99763e6cbda7f1990a5ce93397d7182 /builtin/modstore.lua
parent062de11b4cff30861dd4e9eb56f131d821f34b51 (diff)
downloadminetest-a4e2198e4102f1dabc8f8720c2ace9c2fca8d999.tar.gz
minetest-a4e2198e4102f1dabc8f8720c2ace9c2fca8d999.tar.bz2
minetest-a4e2198e4102f1dabc8f8720c2ace9c2fca8d999.zip
Replace pause and message menu by formspec ones
Diffstat (limited to 'builtin/modstore.lua')
-rw-r--r--builtin/modstore.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/modstore.lua b/builtin/modstore.lua
index 43d8d7e29..ef7fd0165 100644
--- a/builtin/modstore.lua
+++ b/builtin/modstore.lua
@@ -98,7 +98,7 @@ end
-- @function [parent=#modstore] getsuccessfuldialog
function modstore.getsuccessfuldialog()
local retval = ""
- retval = retval .. "size[6,2]"
+ retval = retval .. "size[6,2,true]"
if modstore.lastmodentry ~= nil then
retval = retval .. "label[0,0.25;" .. fgettext("Successfully installed:") .. "]"
retval = retval .. "label[3,0.25;" .. modstore.lastmodentry.moddetails.title .. "]"
@@ -152,7 +152,7 @@ end
--------------------------------------------------------------------------------
-- @function [parent=#modstore] tabheader
function modstore.tabheader(tabname)
- local retval = "size[12,10.25]"
+ local retval = "size[12,10.25,true]"
retval = retval .. "tabheader[-0.3,-0.99;modstore_tab;" ..
"Unsorted,Search;" ..
modstore.nametoindex(tabname) .. ";true;false]" ..