Skip to content

Commit

Permalink
testing raid frame updates revision
Browse files Browse the repository at this point in the history
  • Loading branch information
jadissa committed Aug 13, 2024
1 parent 5aa61e0 commit 8e5a758
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Libs
Libs
.DS_Store
*.pxd
2 changes: 1 addition & 1 deletion App.lua
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Addon.APP:SetScript( 'OnEvent',function( self,Event,AddonName )
end
end

local Settings = GetRaidProfileFlattenedOptions( CompactUnitFrameProfiles.selectedProfile );
--local Settings = GetRaidProfileFlattenedOptions( CompactUnitFrameProfiles.selectedProfile );
--Addon:Dump( Settings );
CompactUnitFrameProfiles_ApplyCurrentSettings();

Expand Down
52 changes: 26 additions & 26 deletions Registry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -698,24 +698,24 @@ Addon.REG:SetScript( 'OnEvent',function( self,Event,AddonName )
},
},
},
raidOptionShowBorders = {
Type = 'Toggle',
Category = 'Hud',
Protected = {
RefreshCompactPartyFrame = {
},
},
},
raidOptionSortMode = {
raidFramesHealthText = {
Type = 'Select',
KeyPairs = {
{
Value = 'role',
Description = 'Role',
Value = 'none',
Description = 'None',
},
{
Value = 'group',
Description = 'Group',
Value = 'health',
Description = 'Health Remaining',
},
{
Value = 'losthealth',
Description = 'Health Lost (ie Deficit)',
},
{
Value = 'perc',
Description = 'Health Percentage',
},
},
Category = 'Hud',
Expand All @@ -724,34 +724,34 @@ Addon.REG:SetScript( 'OnEvent',function( self,Event,AddonName )
},
},
},
raidFramesDisplayClassColor = {
raidOptionShowBorders = {
Type = 'Toggle',
Category = 'Hud',
Protected = {
RefreshCompactPartyFrame = {
},
},
},
raidFramesHealthText = {
raidOptionSortMode = {
Type = 'Select',
KeyPairs = {
{
Value = 'none',
Description = 'None',
},
{
Value = 'health',
Description = 'Health Remaining',
Value = 'role',
Description = 'Role',
},
{
Value = 'losthealth',
Description = 'Health Lost (ie Deficit)',
Value = 'group',
Description = 'Group',
},
{
Value = 'perc',
Description = 'Health Percentage',
},
Category = 'Hud',
Protected = {
RefreshCompactPartyFrame = {
},
},
},
raidFramesDisplayClassColor = {
Type = 'Toggle',
Category = 'Hud',
Protected = {
RefreshCompactPartyFrame = {
Expand Down

0 comments on commit 8e5a758

Please sign in to comment.