# HG changeset patch # User Farmbuyer of US-Kilrogg # Date 1345182185 14400 # Node ID ccca3d8d2b22bd3d956e2293d1f18f366492f308 # Parent fb4bda3ad05ce3e9772c3ac2f1d569730706e923 If the 'alsolog' option has been active, list the log size as a reminder. diff -r fb4bda3ad05c -r ccca3d8d2b22 options.lua --- a/options.lua Fri Aug 17 01:04:38 2012 -0400 +++ b/options.lua Fri Aug 17 01:43:05 2012 -0400 @@ -836,6 +836,13 @@ end) specials:AddChild(w) + if #OuroLootSV_log > 0 then + w = AceGUI:Create("Label") + w:SetFullWidth(true) + w:SetText(("Currently %d lines in disk log."):format(#OuroLootSV_log)) + specials:AddChild(w) + end + if preload then preload() end end