From e6185049f6d7a84173065351e91dec042b13e419 Mon Sep 17 00:00:00 2001 From: Parnic Date: Mon, 13 Sep 2010 05:37:47 +0000 Subject: [PATCH] - after renaming a custom module, set the mod to automatically select it in the options menu --- IceCore.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IceCore.lua b/IceCore.lua index 5e166ba..e6fe989 100644 --- a/IceCore.lua +++ b/IceCore.lua @@ -250,6 +250,8 @@ function IceCore.prototype:RenameDynamicModule(module, newName) module.elementName = newName IceHUD:GenerateModuleOptions() + + LibStub("AceConfigDialog-3.0"):SelectGroup("IceHUD", "modules", newName) end