#appModules/teamspeak.py
#A part of NonVisual Desktop Access (NVDA)
#Copyright (C) 2012-2015 NVDA Contributors <http://www.nvda-project.org/>
#This file is covered by the GNU General Public License.
#See the file COPYING for more details.

import controlTypes
import appModuleHandler
from NVDAObjects.window import edit
import scriptHandler
import ui, speech
import tones

import languageHandler, addonHandler
addonHandler.initTranslation()

class AppModule(appModuleHandler.AppModule):
	def event_NVDAObject_init(self,obj):
		# Stop double speech on arrows in the channel tree.
		if obj.role == controlTypes.ROLE_TREEVIEW:
			if obj.value == obj.name: obj.value = ""

