Skip to content

Commit

Permalink
increase slider range for castbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ffainy committed May 2, 2022
1 parent 4132c69 commit 6fe4e82
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions gui/extra.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1952,16 +1952,16 @@ function GUI:SetupCastbar(parent)
key = 'PlayerCastbarWidth',
value = db.PlayerCastbarWidth,
text = L['Width'],
min = 60,
max = 400,
min = 30,
max = 600,
step = 1,
},
[2] = {
key = 'PlayerCastbarHeight',
value = db.PlayerCastbarHeight,
text = L['Height'],
min = 6,
max = 40,
min = 4,
max = 60,
step = 1,
},
},
Expand All @@ -1970,16 +1970,16 @@ function GUI:SetupCastbar(parent)
key = 'TargetCastbarWidth',
value = db.TargetCastbarWidth,
text = L['Width'],
min = 60,
max = 400,
min = 30,
max = 600,
step = 1,
},
[2] = {
key = 'TargetCastbarHeight',
value = db.TargetCastbarHeight,
text = L['Height'],
min = 6,
max = 40,
min = 4,
max = 60,
step = 1,
},
},
Expand All @@ -1988,16 +1988,16 @@ function GUI:SetupCastbar(parent)
key = 'FocusCastbarWidth',
value = db.FocusCastbarWidth,
text = L['Width'],
min = 60,
max = 400,
min = 30,
max = 600,
step = 1,
},
[2] = {
key = 'FocusCastbarHeight',
value = db.FocusCastbarHeight,
text = L['Height'],
min = 6,
max = 40,
min = 4,
max = 60,
step = 1,
},
},
Expand Down

0 comments on commit 6fe4e82

Please sign in to comment.