fixed quickslot keybind showing when meant to be hidden

Kith [03-11-16 - 09:19]
fixed quickslot keybind showing when meant to be hidden
Filename
ActionBar.lua
Azurah.txt
Core.lua
diff --git a/ActionBar.lua b/ActionBar.lua
index e3a9200..07ed7d4 100644
--- a/ActionBar.lua
+++ b/ActionBar.lua
@@ -97,9 +97,11 @@ function Azurah:ConfigureActionBarElements()

 	ZO_ActionBar1KeybindBG:SetAlpha(db.hideBindBG and 0 or 1)

-	for x = 3, 7 do
-		_G['ActionButton' .. x .. 'ButtonText']:SetAlpha(db.hideBindText and 0 or 1)
-		_G['ActionButton' .. x .. 'ButtonText']:SetHidden(db.hideBindText)
+	for x = 3, 9 do
+		if (x ~= 8) then
+			_G['ActionButton' .. x .. 'ButtonText']:SetAlpha(db.hideBindText and 0 or 1)
+			_G['ActionButton' .. x .. 'ButtonText']:SetHidden(db.hideBindText)
+		end
 	end

 	if (IsInGamepadPreferredMode()) then -- special case to handle changes to ultimate button in Gamepad mode
diff --git a/Azurah.txt b/Azurah.txt
index 84d7ed8..6c552db 100644
--- a/Azurah.txt
+++ b/Azurah.txt
@@ -1,6 +1,6 @@
 ## Title: |c67b1e9A|c4779cezurah|r
 ## Description: Enhances the default interface with additional overlay details and customization options while retaining the stock theme.
-## Version: 2.2.3
+## Version: 2.2.4
 ## Author: Kith, |cEFEBBEGarkin|r, |c66ccffPhinix|r, |c68D2E8Sounomi|r
 ## APIVersion: 100014
 ## SavedVariables: AzurahDB
diff --git a/Core.lua b/Core.lua
index 3080bc9..f626ac6 100644
--- a/Core.lua
+++ b/Core.lua
@@ -5,7 +5,7 @@
 	* stock interface with optional components to provide
 	* additional information while maintaining the stock feel.
 	*
-	* Version 2.2.3
+	* Version 2.2.4
 	* Kith, Garkin, Phinix, Sounomi
 	*
 	*
@@ -15,7 +15,7 @@ local L				= Azurah:GetLocale()

 Azurah.name			= 'Azurah'
 Azurah.slash		= '/azurah'
-Azurah.version		= '2.2.3'
+Azurah.version		= '2.2.4'
 Azurah.versionDB	= 2

 Azurah.movers		= {}