Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gOOvER committed Jul 20, 2018
1 parent a7d5ca7 commit 9704abd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions GuildGreet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ function GLDG_OnEvent(self, event, ...)
GLDG_Main:UnregisterEvent("PLAYER_ENTERING_WORLD")
GLDG_Main:RegisterEvent("GUILD_ROSTER_UPDATE")
GLDG_Main:RegisterEvent("FRIENDLIST_UPDATE")
--GLDG_Main:RegisterEvent("FRIENDLIST_SHOW")
GLDG_Main:RegisterEvent("CHAT_MSG_CHANNEL_JOIN")
GLDG_Main:RegisterEvent("CHAT_MSG_CHANNEL_LEAVE")
GLDG_Main:RegisterEvent("CHAT_MSG_CHANNEL_NOTICE")
Expand Down Expand Up @@ -353,7 +352,7 @@ function GLDG_OnEvent(self, event, ...)
elseif (event == "CHAT_MSG_SYSTEM") then
GLDG_SystemMsg(arg1)

elseif ((event == "FRIENDLIST_UPDATE") then
elseif (event == "FRIENDLIST_UPDATE") then
if (GLDG_Realm and GLDG_Player) then
GLDG_FriendsUpdate()
else
Expand Down
2 changes: 1 addition & 1 deletion GuildGreet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
</Button>

<!-->Configuration frame<-->
<Frame name="$parentSettings" setAllPoints="true" parent="GuildGreetFrame" enableMouse="true">
<Frame name="$parentSettings" setAllPoints="true" parent="GuildGreetFrame" enableMouse="true" clampToScreen="true">
<Size><AbsDimension x="980" y="390"/></Size>
<Anchors>
<Anchor point="CENTER">
Expand Down

0 comments on commit 9704abd

Please sign in to comment.