diff options
author | est31 <MTest31@outlook.com> | 2015-03-16 17:32:30 +0100 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2015-03-16 19:46:54 +0100 |
commit | 0c0248a19cd356eb51240c5ba8ffd17b6f7d89f4 (patch) | |
tree | 58dde4527bd7f4a5233a8b1720ae896877757adb | |
parent | 0429ec4cfde636dd8dda3d1a0dcf6e175c821196 (diff) | |
download | minetest-0c0248a19cd356eb51240c5ba8ffd17b6f7d89f4.tar.gz minetest-0c0248a19cd356eb51240c5ba8ffd17b6f7d89f4.tar.bz2 minetest-0c0248a19cd356eb51240c5ba8ffd17b6f7d89f4.zip |
Android: Fix auto-entry of server address and port in mainmenu
Fixes #2497.
-rw-r--r-- | builtin/mainmenu/tab_simple_main.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/mainmenu/tab_simple_main.lua b/builtin/mainmenu/tab_simple_main.lua index b9a6b650f..995c72132 100644 --- a/builtin/mainmenu/tab_simple_main.lua +++ b/builtin/mainmenu/tab_simple_main.lua @@ -98,12 +98,12 @@ local function main_button_handler(tabview, fields, name, tabdata) end if fields["favourites"] ~= nil then - local event = core.explode_textlist_event(fields["favourites"]) + local event = core.explode_table_event(fields["favourites"]) if event.type == "CHG" then - if event.index <= #menudata.favorites then - local address = menudata.favorites[event.index].address - local port = menudata.favorites[event.index].port + if event.row <= #menudata.favorites then + local address = menudata.favorites[event.row].address + local port = menudata.favorites[event.row].port if address ~= nil and port ~= nil then @@ -111,7 +111,7 @@ local function main_button_handler(tabview, fields, name, tabdata) core.setting_set("remote_port",port) end - tabdata.fav_selected = event.index + tabdata.fav_selected = event.row end end return true |