Skip to content

Commit a618c4c

Browse files
author
Todd OST
committed
BF: Fix tab traversal on param controls
1 parent 67d337f commit a618c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psychopy/app/builder/dialogs/paramCtrls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def tunnelShow(self, sizer, visible):
143143
class SingleLineCtrl(wx.TextCtrl, _ValidatorMixin, _HideMixin):
144144
def __init__(self, parent, valType,
145145
val="", fieldName="",
146-
size=wx.Size(-1, 24), style=wx.DEFAULT):
146+
size=wx.Size(-1, 24), style=wx.TE_LEFT):
147147
# Create self
148148
wx.TextCtrl.__init__(self)
149149
self.Create(parent, -1, val, name=fieldName, size=size, style=style)

0 commit comments

Comments
 (0)