WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/RDX/PanelMgr
    from Rev 661 to Rev 676
    Reverse comparison

Rev 661 → Rev 676

MainMenuBar.lua
910,6 → 910,12
end);
 
RDXPM.MainMenu:RegisterMenuFunction(function(ent)
ent.text = VFLI.i18n("Learn Wizard");
ent.func = function() RDX.NewLearnWizard(); end;
ent.notCheckable = true;
end);
 
RDXPM.MainMenu:RegisterMenuFunction(function(ent)
ent.text = VFLI.i18n("Debugging");
ent.hasArrow = true;
ent.notCheckable = true;
GlobalSettings.lua
28,10 → 28,10
if opt and opt.asmp then chk_asmp:SetChecked(true); else chk_asmp:SetChecked(); end
ui:InsertFrame(chk_asmp);
 
local chk_hmp = VFLUI.Checkbox:new(ui); chk_hmp:Show();
chk_hmp:SetText(VFLI.i18n("Always Hide Main Panel"));
if opt and opt.hmp then chk_hmp:SetChecked(true); else chk_hmp:SetChecked(); end
ui:InsertFrame(chk_hmp);
--local chk_hmp = VFLUI.Checkbox:new(ui); chk_hmp:Show();
--chk_hmp:SetText(VFLI.i18n("Always Hide Main Panel"));
--if opt and opt.hmp then chk_hmp:SetChecked(true); else chk_hmp:SetChecked(); end
--ui:InsertFrame(chk_hmp);
 
 
local chk_upp = VFLUI.Checkbox:new(ui); chk_upp:Show();
69,7 → 69,7
 
local function Save()
opt.asmp = chk_asmp:GetChecked();
opt.hmp = chk_hmp:GetChecked();
--opt.hmp = chk_hmp:GetChecked();
opt.upp = chk_upp:GetChecked();
--opt.dgr = chk_dgr:GetChecked();
local mainPane = RDXPM.GetMainPane();
109,4 → 109,8
else
RDXPM.RDXManage(VFLDIALOG);
end
end
 
function RDXPM.IsRDXManageOpen()
if dlg then return true; else return nil; end
end
\ No newline at end of file