Quantcast

More buttons! This closes #238

Darthpred [07-30-16 - 08:16]
More buttons! This closes #238
Filename
CHANGELOG.txt
ElvUI_SLE/options/minimap/minimapicons_c.lua
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 6a4474f..fc01156 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -2,6 +2,8 @@ v3.09
 Fixes:
 - Fixed instance indicator not updating when difficulty is changed inside the instance
 - Fixed Affinitii's addons profile not actually applying (got exactly zero reports on that one, shows how much people actually wanted the thing)
+Changes:
+- Minimap icon bar buttons per row increased up to 30

 v3.08 07/28/2016
 Fixes:
diff --git a/ElvUI_SLE/options/minimap/minimapicons_c.lua b/ElvUI_SLE/options/minimap/minimapicons_c.lua
index 7605e26..9d7d869 100644
--- a/ElvUI_SLE/options/minimap/minimapicons_c.lua
+++ b/ElvUI_SLE/options/minimap/minimapicons_c.lua
@@ -57,7 +57,7 @@ local function configTable()
 				type = 'range',
 				name = L["Icons Per Row"],
 				desc = L["Anchor mode for displaying the minimap buttons are skinned."],
-				min = 1, max = 12, step = 1,
+				min = 1, max = 30, step = 1,
 				disabled = function() return not E.private.sle.minimap.mapicons.enable end,
 				get = function(info) return E.db.sle.minimap.mapicons.iconperrow end,
 				set = function(info, value) E.db.sle.minimap.mapicons.iconperrow = value; SMB:Update(SLE_SquareMinimapButtonBar) end,