Quantcast

Bug fix. You should be able to use shift as a modifier now.

Scott Sibley [10-20-10 - 11:08]
Bug fix. You should be able to use shift as a modifier now.
Filename
StarTip.lua
diff --git a/StarTip.lua b/StarTip.lua
index b11447d..aef64ef 100644
--- a/StarTip.lua
+++ b/StarTip.lua
@@ -842,7 +842,7 @@ function StarTip:MODIFIER_STATE_CHANGED(ev, modifier, up, ...)
 	elseif self.db.profile.modifier == 3 then
 		mod = (modifier == "LALT" or modifier == "RALT") and "LALT"
 		modifier = "LALT"
-	elseif self.db.profilemodifier == 4 then
+	elseif self.db.profile.modifier == 4 then
 		mod = (modifier == "LSHIFT" or modifier == "RSHIFT") and "LSHIFT"
 		modifier = "LSHIFT"
 	end