The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated via 546a4dc2e95008a75816001a679a045639a7b82e (commit) from ad30bdd5733f02bb123db32343ecb00f747a2b38 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: pyhoca/wxgui/profilemanager.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py index ab59a4c..a522659 100644 --- a/pyhoca/wxgui/profilemanager.py +++ b/pyhoca/wxgui/profilemanager.py @@ -322,7 +322,10 @@ class PyHocaGUI_ProfileManager(wx.Dialog): self.SSHProxyTunnelToPort.SetMinSize((60, _textfield_height)) self.SSHProxyTunnelFromHost.SetMinSize((120, _textfield_height)) self.SSHProxyTunnelToHost.SetMinSize((120, _textfield_height)) - self.LinkSpeed.SetMinSize((440, _textfield_height)) + if X2GOCLIENT_OS == 'Windows': + self.LinkSpeed.SetMinSize((425, _textfield_height)) + else: + self.LinkSpeed.SetMinSize((440, _textfield_height)) self.ModemLabel.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "")) self.ISDNLabel.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "")) self.ADSLLabel.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, "")) @@ -566,7 +569,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog): sizer_4_1_2.Add(self.AddSharedFolderPathButton, 0, wx.ALIGN_CENTRE_VERTICAL, 0) sizer_4_1_2.Add(self.DeleteSharedFolderPathButton, 0, wx.ALIGN_CENTRE_VERTICAL, 0) sizer_4_1_3 = wx.BoxSizer(wx.HORIZONTAL) - sizer_4_1_3.Add(self.SharedFoldersList, 1, 0, 0) + sizer_4_1_3.Add(self.SharedFoldersList, 1, wx.EXPAND, 0) sizer_4_1_4 = wx.BoxSizer(wx.HORIZONTAL) sizer_4_1_4.Add(self.UseEncodingConverter, 0, 0, 0) sizer_4_1_5 = wx.BoxSizer(wx.HORIZONTAL) @@ -627,7 +630,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog): max4_x, max4_y = self.tab_SharedFilesAndFolders.GetBestSize() sizer_B_x, sizer_B_y = sizer_B.GetSize() - self.SetSize(((max(max1_x, max2_x, max3_x, max4_x) + sizer_B_x) * 1.05, (max(max1_y, max2_y, max3_y, max4_y) + sizer_B_y) * 1.2)) + self.SetSize((max(max1_x, max2_x, max3_x, max4_x) * 1.05, (max(max1_y, max2_y, max3_y, max4_y) + sizer_B_y) * 1.2)) self.SetAutoLayout(True) self.Layout() hooks/post-receive -- pyhoca-gui.git (Python X2Go Client (wxPython GUI)) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).