Skip to content
Snippets Groups Projects
Commit 598d9b62 authored by eric pellegrini's avatar eric pellegrini
Browse files

Modifed the caption of the working panel

parent 7e9b8d88
Branches
Tags
No related merge requests found
...@@ -120,7 +120,7 @@ class MainFrame(wx.Frame): ...@@ -120,7 +120,7 @@ class MainFrame(wx.Frame):
paneInfo=aui.AuiPaneInfo() paneInfo=aui.AuiPaneInfo()
self._mgr.AddPane(self._panels["data"], paneInfo.Caption("Data").Name("data").Left().CloseButton(True).DestroyOnClose(False).MinSize((250,-1))) self._mgr.AddPane(self._panels["data"], paneInfo.Caption("Data").Name("data").Left().CloseButton(True).DestroyOnClose(False).MinSize((250,-1)))
self._mgr.AddPane(self._panels["plugins"], paneInfo.Caption("Plugins").Name("plugins").Left().CloseButton(True).DestroyOnClose(False).MinSize((250,-1))) self._mgr.AddPane(self._panels["plugins"], paneInfo.Caption("Plugins").Name("plugins").Left().CloseButton(True).DestroyOnClose(False).MinSize((250,-1)))
self._mgr.AddPane(self._panels["working"], paneInfo.Name("working").Center().CloseButton(False)) self._mgr.AddPane(self._panels["working"], paneInfo.Caption("Working panel").Name("working").Center().CloseButton(False))
self._mgr.AddPane(self._panels["controller"], paneInfo.Name("controller").Name("controller").Floatable().Right().Bottom().CloseButton(True).DestroyOnClose(False).MinSize((-1,120))) self._mgr.AddPane(self._panels["controller"], paneInfo.Name("controller").Name("controller").Floatable().Right().Bottom().CloseButton(True).DestroyOnClose(False).MinSize((-1,120)))
self._mgr.Update() self._mgr.Update()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment