Skip to content

Commit

Permalink
Fix bezel size entry box width
Browse files Browse the repository at this point in the history
  • Loading branch information
hhannine committed Dec 13, 2022
1 parent 6f01378 commit aaccf9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superpaper/gui.py
Expand Up @@ -2450,7 +2450,7 @@ def __init__(self, parent, style):
"Enter the size of adjacent bezels and gap\n"
"in millimeters:")
# self.tc_bez = wx.TextCtrl(pnl, -1, size=(100, -1))
self.tc_bez = wx.TextCtrl(pnl, -1, style=wx.TE_RIGHT|wx.TE_PROCESS_ENTER)
self.tc_bez = wx.TextCtrl(pnl, -1, size=(60, -1), style=wx.TE_RIGHT|wx.TE_PROCESS_ENTER)
self.tc_bez.Bind(wx.EVT_TEXT_ENTER, self.OnEnter)
self.current_bez_val = None
butt_save = wx.Button(pnl, label="Apply")
Expand Down

0 comments on commit aaccf9d

Please sign in to comment.