Skip to content

Commit

Permalink
Merge pull request #1 from marcschulder/patch-1
Browse files Browse the repository at this point in the history
Fix: Window not displaying properly on Ubuntu
  • Loading branch information
marcschulder authored Jul 30, 2021
2 parents deb3f55 + 11f4cca commit bfc1024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def __init__(self, parent, ident=wx.ID_ANY, title=wx.EmptyString, scriptpath=Non
self.grammar_name = self.converter.getGrammarName()

wx.Frame.__init__(self, parent, -1, title, size=(995, 735))
panel = wx.Panel(self)
panel = wx.Panel(self, size=wx.Size(995, 735))
self.Bind(wx.EVT_CLOSE, self.OnClose)

# Directory Selector
Expand Down

0 comments on commit bfc1024

Please sign in to comment.