Skip to content

Commit

Permalink
Merge pull request #244 from jeanslack/subtitles_editor
Browse files Browse the repository at this point in the history
subtitles_editor.py: Fixed space button
  • Loading branch information
jeanslack authored Aug 7, 2023
2 parents 3cc26c9 + 9258218 commit 10a8b3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions videomass/vdms_ytdlp/subtitles_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@ def __init__(self, parent, data):
sizbase.Add(self.lab1, 0, wx.LEFT, 5)
self.lab1.SetLabelMarkup(f"<b>{labtstr2}</b>")
sizcustsub = wx.BoxSizer(wx.HORIZONTAL)
sizbase.Add(sizcustsub, 0, wx.EXPAND, 0)
sizbase.Add(sizcustsub, 0, wx.ALL | wx.EXPAND, 5)
self.btn_help = wx.Button(self, wx.ID_ANY, _("Read me"), size=(-1, -1))
sizcustsub.Add(self.btn_help, 0, wx.ALL, 5)
sizcustsub.Add(self.btn_help, 0)
self.addlangs = wx.TextCtrl(self,
wx.ID_ANY,
value=(""),
size=(-1, -1),
name="custom_subs",
)
sizcustsub.Add(self.addlangs, 1, wx.ALL | wx.EXPAND, 5)
sizcustsub.Add(self.addlangs, 1, wx.LEFT | wx.EXPAND, 5)
sizbase.Add(10, 10)
labtstr3 = _('Options')
self.lab3 = wx.StaticText(self, label=labtstr3)
Expand Down

0 comments on commit 10a8b3f

Please sign in to comment.