From 81612cc32a971e3e2b949512edf08effe0176dd0 Mon Sep 17 00:00:00 2001 From: blitzman Date: Mon, 21 Nov 2016 23:51:18 -0500 Subject: [PATCH] Remove border from note box text area --- gui/notesView.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/notesView.py b/gui/notesView.py index 74a1992f7..efa933bb9 100644 --- a/gui/notesView.py +++ b/gui/notesView.py @@ -10,7 +10,7 @@ class NotesView(wx.Panel): self.lastFitId = None self.mainFrame = gui.mainFrame.MainFrame.getInstance() mainSizer = wx.BoxSizer(wx.VERTICAL) - self.editNotes = wx.TextCtrl(self, style=wx.TE_MULTILINE) + self.editNotes = wx.TextCtrl(self, style=wx.TE_MULTILINE | wx.BORDER_NONE, ) mainSizer.Add(self.editNotes, 1, wx.EXPAND) self.SetSizer(mainSizer) self.mainFrame.Bind(GE.FIT_CHANGED, self.fitChanged)