Skip to content
Snippets Groups Projects
Commit 4d8919b8 authored by DarkGod's avatar DarkGod
Browse files

Main menu will now take on the UI theme configured instead

parent 84827617
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,10 @@ function _M:loadUIDefinitions(file)
if not f then print("Error while loading UI definition from", file, ":", err) return end
end
function _M:uiExists(ui)
return self.ui_conf[ui]
end
function _M:inherited(base)
if base._NAME == "engine.ui.Base" then
self.font = base.font
......
......@@ -45,6 +45,9 @@ UIBase.font_mono_h = UIBase.font_mono:lineSkip()+2
local n = core.noise.new(2)
_2DNoise = n:makeTexture2D(64, 64)
if config.settings.tome and config.settings.tome.ui_theme3 and UIBase:uiExists(config.settings.tome.ui_theme3) then
UIBase.ui = config.settings.tome.ui_theme3
end
UIBase:setTextShadow(0.6)
-- Usefull keybinds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment