This commit is contained in:
Bill Dengler
2015-05-11 21:21:27 -04:00
parent 3f63046cbb
commit c1ce8cb8e5
4 changed files with 17 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import logging as original_logger
import application
from multiplatform_widgets import widgets
import output
import config
class general(wx.Panel, baseDialog.BaseWXDialog):
def __init__(self, parent, languages):
super(general, self).__init__(parent)
@@ -94,8 +94,10 @@ class generalAccount(wx.Panel, baseDialog.BaseWXDialog):
sizer.Add(rMode, 0, wx.ALL, 5)
PersistSizeLabel = wx.StaticText(self, -1, _(u"Number of items per buffer to cache in database (0 to disable caching, blank for unlimited)"))
self.persist_size = wx.TextCtrl(self, -1)
self.autohandle_audio= wx.CheckBox(self, -1, _(U"Automatically handle audio on "+config.app["keymap"]["url"]))
sizer.Add(PersistSizeLabel, 0, wx.ALL, 5)
sizer.Add(self.persist_size, 0, wx.ALL, 5)
sizer.Add(self.autohandle_audio, 0, wx.ALL, 5)
self.SetSizer(sizer)
class other_buffers(wx.Panel):