aboutsummaryrefslogtreecommitdiff
path: root/builtin/mainmenu/gamemgr.lua
diff options
context:
space:
mode:
authorCraig Robbins <kde.psych@gmail.com>2015-03-09 12:42:25 +1000
committerCraig Robbins <kde.psych@gmail.com>2015-03-09 12:42:25 +1000
commite74b8da54e4443773404f2642916fd2f2b7f625e (patch)
treee476fce8119e495be6c01f190a8fb0c1d39f1176 /builtin/mainmenu/gamemgr.lua
parent3ae16f1c17c2b23c143b5a4ee6191f37d5371633 (diff)
downloadminetest-e74b8da54e4443773404f2642916fd2f2b7f625e.tar.gz
minetest-e74b8da54e4443773404f2642916fd2f2b7f625e.tar.bz2
minetest-e74b8da54e4443773404f2642916fd2f2b7f625e.zip
Stop formspecs closing with double-click in empty area
Behaviour on Android remains the same until other alternatives can be devised (if possible) See #2425 (and the many other -- now closed -- issues reporting this feature as a bug)
Diffstat (limited to 'builtin/mainmenu/gamemgr.lua')
0 files changed, 0 insertions, 0 deletions
/* Minetest Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /******************************************************************************/ /******************************************************************************/ /* WARNING!!!! do NOT add this header in any include file or any code file */ /* not being a script/modapi file!!!!!!!! */ /******************************************************************************/ /******************************************************************************/ #ifndef C_CONVERTER_H_ #define C_CONVERTER_H_ #include <vector> #include "util/cpp11_container.h" #include "irrlichttypes_bloated.h" #include "common/c_types.h" extern "C" { #include <lua.h> } std::string getstringfield_default(lua_State *L, int table, const char *fieldname, const std::string &default_); bool getboolfield_default(lua_State *L, int table, const char *fieldname, bool default_); float getfloatfield_default(lua_State *L, int table, const char *fieldname, float default_); int getintfield_default (lua_State *L, int table, const char *fieldname, int default_);