]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/mainmenu/init.lua
Use a settings object for the main settings
[dragonfireclient.git] / builtin / mainmenu / init.lua
index 7f0c1e386041da5495b57103301dcb9d7cab6bae..492bb22d6dcee8a1a217834e1c9b8b3b65ad1c0d 100644 (file)
@@ -16,9 +16,9 @@
 --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 mt_color_grey  = "#AAAAAA"
-mt_color_blue  = "#0000DD"
-mt_color_green = "#00DD00"
-mt_color_dark_green = "#003300"
+mt_color_blue  = "#6389FF"
+mt_color_green = "#72FF63"
+mt_color_dark_green = "#25C191"
 
 --for all other colors ask sfan5 to complete his work!
 
@@ -119,16 +119,16 @@ local function init_globals()
                menudata.worldlist:add_sort_mechanism("alphabetic", sort_worlds_alphabetic)
                menudata.worldlist:set_sortmode("alphabetic")
 
-               if not core.setting_get("menu_last_game") then
-                       local default_game = core.setting_get("default_game") or "minetest"
-                       core.setting_set("menu_last_game", default_game)
+               if not core.settings:get("menu_last_game") then
+                       local default_game = core.settings:get("default_game") or "minetest"
+                       core.settings:set("menu_last_game", default_game)
                end
 
                mm_texture.init()
        end
 
        -- Create main tabview
-       local tv_main = tabview_create("maintab", {x = 12, y = 5.2}, {x = 0, y = 0})
+       local tv_main = tabview_create("maintab", {x = 12, y = 5.4}, {x = 0, y = 0})
 
        if PLATFORM == "Android" then
                tv_main:add(tabs.simple_main)
@@ -149,7 +149,7 @@ local function init_globals()
        tv_main:set_fixed_size(false)
 
        if PLATFORM ~= "Android" then
-               tv_main:set_tab(core.setting_get("maintab_LAST"))
+               tv_main:set_tab(core.settings:get("maintab_LAST"))
        end
        ui.set_default("maintab")
        tv_main:show()