[Nvda-dev] commit r2470 - in trunk: . source/gui
NVDA Subversion
svn at nvda-project.org
Tue Nov 4 21:54:50 UTC 2008
Author: bzr
Date: Tue Nov 4 21:54:50 2008
New Revision: 2470
Log:
Virtual Buffers dialog: Oops. Add the new automatic focus mode check boxes to the sizer so they are visible.
Modified:
trunk/ (props changed)
trunk/source/gui/settingsDialogs.py
Modified: trunk/source/gui/settingsDialogs.py
==============================================================================
--- trunk/source/gui/settingsDialogs.py (original)
+++ trunk/source/gui/settingsDialogs.py Tue Nov 4 21:54:50 2008
@@ -557,11 +557,13 @@
settingsSizer.Add(self.paragraphsCheckBox,border=10,flag=wx.BOTTOM)
self.framesCheckBox=wx.CheckBox(self,wx.NewId(),label=_("Report f&rames"))
self.framesCheckBox.SetValue(config.conf["virtualBuffers"]["reportFrames"])
+ settingsSizer.Add(self.framesCheckBox,border=10,flag=wx.BOTTOM)
self.autoPassThroughOnFocusChangeCheckBox=wx.CheckBox(self,wx.ID_ANY,label=_("Automatic focus mode for focus changes"))
self.autoPassThroughOnFocusChangeCheckBox.SetValue(config.conf["virtualBuffers"]["autoPassThroughOnFocusChange"])
+ settingsSizer.Add(self.autoPassThroughOnFocusChangeCheckBox,border=10,flag=wx.BOTTOM)
self.autoPassThroughOnCaretMoveCheckBox=wx.CheckBox(self,wx.ID_ANY,label=_("Automatic focus mode for caret movement"))
self.autoPassThroughOnCaretMoveCheckBox.SetValue(config.conf["virtualBuffers"]["autoPassThroughOnCaretMove"])
- settingsSizer.Add(self.framesCheckBox,border=10,flag=wx.BOTTOM)
+ settingsSizer.Add(self.autoPassThroughOnCaretMoveCheckBox,border=10,flag=wx.BOTTOM)
def postInit(self):
self.maxLengthEdit.SetFocus()
More information about the Nvda-dev
mailing list