完成焦点等开发

This commit is contained in:
rucky
2026-03-31 18:03:23 +08:00
parent c7dd0f4848
commit 6e18269bfd
34 changed files with 6803 additions and 542 deletions

View File

@@ -832,6 +832,19 @@ local function BuildOptions(f, pageY)
function() return SFramesDB.spellBookAutoReplace == true end,
function(v) SFramesDB.spellBookAutoReplace = v end
)
f.optMouseover = MakeCheckOption(f, "鼠标指向施法", L.SIDE_PAD + 280, optY,
function()
return SFramesDB.Tweaks and SFramesDB.Tweaks.mouseoverCast == true
end,
function(v)
if not SFramesDB.Tweaks then SFramesDB.Tweaks = {} end
SFramesDB.Tweaks.mouseoverCast = v
if SFrames.Tweaks and SFrames.Tweaks.SetMouseoverCast then
SFrames.Tweaks:SetMouseoverCast(v)
end
end
)
end
--------------------------------------------------------------------------------