diff -r a63bb4025852 -r 8043f32de7b8 controls/ProjectPropertiesPanel.py --- a/controls/ProjectPropertiesPanel.py Fri Jun 09 18:12:12 2017 +0300 +++ b/controls/ProjectPropertiesPanel.py Mon Jun 19 18:49:43 2017 +0300 @@ -5,6 +5,7 @@ # programming IEC 61131-3 automates supporting plcopen standard and CanFestival. # # Copyright (C) 2012: Edouard TISSERANT and Laurent BESSARD +# Copyright (C) 2017: Andrey Skvortsov # # See COPYING file for copyrights details. # @@ -61,7 +62,7 @@ flag=wx.GROW|border|wx.RIGHT) def __init__(self, parent, controller=None, window=None, enable_required=True): - wx.Notebook.__init__(self, parent, size=wx.Size(500, 300)) + wx.Notebook.__init__(self, parent) self.Controller = controller self.ParentWindow = window @@ -199,7 +200,7 @@ flag=wx.BOTTOM|wx.LEFT) self.ContentDescription = wx.TextCtrl(self.MiscellaneousPanel, - style=wx.TE_MULTILINE|wx.TE_PROCESS_ENTER) + size=wx.Size(240,150), style=wx.TE_MULTILINE|wx.TE_PROCESS_ENTER) self.Bind(wx.EVT_TEXT_ENTER, self.OnContentDescriptionChanged, self.ContentDescription) self.ContentDescription.Bind(wx.EVT_KILL_FOCUS,