- Updated Details! Framework.

- Added an option to make the menus on title bar work with clicks instead of hovering over them.
This commit is contained in:
Tercio
2015-08-21 17:47:39 -03:00
parent 2b8a7b079e
commit 02aa979b1c
61 changed files with 4711 additions and 2393 deletions
+3 -3
View File
@@ -2336,7 +2336,7 @@
-----------------------------------------------
local select_module = function (module_number)
local select_module = function (a, b, module_number)
if (current_module ~= module_number) then
local module = all_modules [current_module]
@@ -2377,7 +2377,7 @@
end
function f:refresh()
select_module (current_module)
select_module (nil, nil, current_module)
end
for i = 1, #all_modules do
@@ -2389,7 +2389,7 @@
tinsert (buttons, b)
end
select_module (1)
select_module (nil, nil, 1)
end