WoWInterface SVN Cellular

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 43 to Rev 44
    Reverse comparison

Rev 43 → Rev 44

trunk/Cellular/Cellular.toc
2,7 → 2,7
## Title: Cellular
## Notes: Instant messenger for whispers
## Author: TotalPackage
## Version: 5.0.002
## Version: 5.0.003
 
## SavedVariables: CellularDB
## SavedVariablesPerCharacter: CellularCharDB, Cellular_History
trunk/Cellular/core.lua
327,11 → 327,14
else
if tab.name and tab.name ~= "" then
local editBox = ChatEdit_ChooseBoxForSend()
editBox:SetAttribute("chatType", "WHISPER")
editBox:SetAttribute("tellTarget", tab.name)
ChatEdit_UpdateHeader(editBox)
if editBox ~= ChatEdit_GetActiveWindow() then
ChatFrame_OpenChat("")
local lastTell, lastTellType = ChatEdit_GetLastTellTarget();
if lastTell then
editBox:SetAttribute("chatType", lastTellType)
editBox:SetAttribute("tellTarget", tab.name)
ChatEdit_UpdateHeader(editBox)
if editBox ~= ChatEdit_GetActiveWindow() then
ChatFrame_OpenChat("")
end
end
end
end