9c36ee6e47
* Merge from origin https://gitlab.com/Tsoukie/clique-3.3.5 * Linting * Ascension Modifications Fixes Spec swap and adds the 12 slots Fixes ascension compact raid frame support Fixes ascension spell panel integration * Add profile dropdown to binding window * Fix menu buttons showing as invisible * cleanup xml button definitions * enable or disable Bind Spell button when spellbook is visible * give the labels a bit more spacing for default UI
26 lines
416 B
Lua
26 lines
416 B
Lua
local addonName, addon = ...
|
|
local L = addon.L
|
|
|
|
addon.defaults = {
|
|
char = {
|
|
blacklist = {},
|
|
blizzframes = {
|
|
PlayerFrame = true,
|
|
PetFrame = true,
|
|
TargetFrame = true,
|
|
TargetFrameToT = true,
|
|
FocusFrame = true,
|
|
FocusFrameToT = true,
|
|
arena = true,
|
|
party = true,
|
|
compactraid = true,
|
|
compactparty = true,
|
|
boss = true
|
|
},
|
|
stopcastingfix = false
|
|
},
|
|
profile = {
|
|
bindings = {}
|
|
}
|
|
}
|