summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTre <ThomasMonroe@protonmail.com>2018-02-19 01:25:57 -0600
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-02-19 08:25:57 +0100
commit5ef9056e89855660d93c4e8d98a7dbc349c1a7eb (patch)
tree996d635f82846fec0548819eaffda49dc72c8718
parent4bb41a19dc74fa31cb021dc3b5622814d67fbd6f (diff)
downloadminetest-5ef9056e89855660d93c4e8d98a7dbc349c1a7eb.tar.gz
minetest-5ef9056e89855660d93c4e8d98a7dbc349c1a7eb.tar.bz2
minetest-5ef9056e89855660d93c4e8d98a7dbc349c1a7eb.zip
Add a refresh button to the serverlist (#6957)
* add refresh button * Make search and refresh buttons smaller * Change to image button
-rw-r--r--LICENSE.txt3
-rw-r--r--builtin/mainmenu/tab_online.lua11
-rw-r--r--textures/base/pack/refresh.pngbin0 -> 3660 bytes
3 files changed, 12 insertions, 2 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index c87e74e21..92954e7eb 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -8,6 +8,9 @@ distribution.
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
http://creativecommons.org/licenses/by-sa/3.0/
+textures/base/pack/refresh.png is under the Apache 2 license
+https://www.apache.org/licenses/LICENSE-2.0.html
+
Authors of media files
-----------------------
Everything not listed in here:
diff --git a/builtin/mainmenu/tab_online.lua b/builtin/mainmenu/tab_online.lua
index e3c583614..8e88a7743 100644
--- a/builtin/mainmenu/tab_online.lua
+++ b/builtin/mainmenu/tab_online.lua
@@ -33,8 +33,10 @@ local function get_formspec(tabview, name, tabdata)
local retval =
-- Search
- "field[0.15,0.075;6.05,1;te_search;;"..core.formspec_escape(tabdata.search_for).."]"..
- "button[5.8,-0.25;2,1;btn_mp_search;" .. fgettext("Search") .. "]" ..
+ "field[0.15,0.075;5.91,1;te_search;;" .. core.formspec_escape(tabdata.search_for) .. "]" ..
+ "button[5.62,-0.25;1.5,1;btn_mp_search;" .. fgettext("Search") .. "]" ..
+ "image_button[6.97,-.165;.83,.83;" .. core.formspec_escape(defaulttexturedir .. "refresh.png")
+ .. ";btn_mp_refresh;" .. fgettext("") .. "]" ..
-- Address / Port
"label[7.75,-0.25;" .. fgettext("Address / Port") .. "]" ..
@@ -300,6 +302,11 @@ local function main_button_handler(tabview, fields, name, tabdata)
return true
end
+ if fields.btn_mp_refresh then
+ asyncOnlineFavourites()
+ return true
+ end
+
if (fields.btn_mp_connect or fields.key_enter)
and fields.te_address ~= "" and fields.te_port then
gamedata.playername = fields.te_name
diff --git a/textures/base/pack/refresh.png b/textures/base/pack/refresh.png
new file mode 100644
index 000000000..7193677b4
--- /dev/null
+++ b/textures/base/pack/refresh.png
Binary files differ