v1.4.9: Validation fixes, Profiler fix, Quest link duplicate fix, Ascension fixes
This commit is contained in:
@@ -204,17 +204,20 @@ function QuestieOptions.tabs.general:Initialize()
|
||||
desc = function() return l10n('Toggles the default Instant Quest Text option. This is just a shortcut for the WoW option in Interface.'); end,
|
||||
width = 1.55,
|
||||
get = function()
|
||||
if GetCVar("instantQuestText") == '1' then
|
||||
local val = GetCVar("instantQuestText")
|
||||
if val == '1' then
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
end
|
||||
end,
|
||||
set = function(info, value)
|
||||
if value then
|
||||
SetCVar("instantQuestText", 1);
|
||||
else
|
||||
SetCVar("instantQuestText", 0);
|
||||
if GetCVar("instantQuestText") ~= nil then
|
||||
if value then
|
||||
SetCVar("instantQuestText", "1");
|
||||
else
|
||||
SetCVar("instantQuestText", "0");
|
||||
end
|
||||
end
|
||||
end,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user