Thread: RealUI
View Single Post
05-28-13, 07:24 PM   #1653
Nibelheim
local roygbi-
 
Nibelheim's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 1,600
Originally Posted by angeld View Post
Humm yea must be more, CustomCDBar.lua was actually already in modules. and it was already on the nibIceHUD.toc.
Hmm, I see. Got some stuff to add to the nibIceHUD_options\Options.lua as well.

Code:
		customModuleCreate = {
			type = "execute",
			name = "Create custom timer",
			func = function()
				nibIceHUD:CreateCustomModuleAndNotify("Bar")
			end,
			disabled = function()
				return not nibIceHUD.IceCore:IsEnabled()
			end,
			order = 95,
		},
to
Code:
		customModuleSelect = {
			type = "select",
			name ="Create custom module",
			desc = "Select a custom module that you want to create here, then press the 'Create' button.",
			get = function(info)
				return lastCustomModule
			end,
			set = function(info, v)
				lastCustomModule = v
			end,
			values = nibIceHUD.validCustomModules,
			order = 94.5,
		},

		customModuleCreate = {
			type = "execute",
			name = "Create",
			desc = "Creates the selected custom module",
			func = function()
				nibIceHUD:CreateCustomModuleAndNotify(lastCustomModule)
			end,
			disabled = function()
				return not nibIceHUD.IceCore:IsEnabled()
			end,
			order = 94.6,
		},
And then remove all Locale (L[" "]) references and the (local L = LibStub("AceLocale-3.0"):GetLocale("nibIceHUD", false)) line from CustomCDBar.lua

Bleh.