Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/data/gui/scripts/ChatBox.lua @ 7500

Last change on this file since 7500 was 7500, checked in by dafrick, 14 years ago

Fixing same issue as in tutorial2 branch. Error only occurs (as far as I can tell) on tardis.
Could be an issue with different CEGUI versions.

  • Property svn:eol-style set to native
File size: 355 bytes
Line 
1-- ChatBox.lua
2
3local P = createMenuSheet("ChatBox")
4
5function P.onLoad()
6    local window = winMgr:getWindow("orxonox/ChatBox")
7    orxonox.GUIManager:subscribeEventHelper(window, "CloseClicked", P.name .. ".ChatBoxCloseButton_clicked")
8end
9
10function P.ChatBoxCloseButton_clicked(e)
11    orxonox.ChatInputHandler:getInstance():deactivate()
12end
13
14return P
15
Note: See TracBrowser for help on using the repository browser.