#39: Add option to disable new behavior.

This commit is contained in:
Bill Dengler
2015-05-16 13:56:20 -04:00
parent a60d00d0dc
commit 24fa7a1815
3 changed files with 6 additions and 1 deletions

View File

@@ -38,6 +38,8 @@ class general(wx.Panel, baseDialog.BaseWXDialog):
sizer.Add(kmbox, 0, wx.ALL, 5)
self.use_slow_audio_algo= wx.CheckBox(self, -1, _(U"Use slow audio tweet detection algorithm (improves audio tweet detection accuracy at the cost of performance)"))
sizer.Add(self.use_slow_audio_algo, 0, wx.ALL, 5)
self.use_Codeofdusk_audio_handlers= wx.CheckBox(self, -1, _(U"Use Codeofdusk's tweet interaction handlers (intelegently handle audio tweets, may impact client performance on very slow connections)"))
sizer.Add(self.use_Codeofdusk_audio_handlers, 0, wx.ALL, 5)
self.SetSizer(sizer)
class proxy(wx.Panel, baseDialog.BaseWXDialog):