This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from a73e159 Continue development new 269d225 pyhoca-gui: Support importing local pyhoca.wxgui module. new 6910d06 pyhoca/wxgui/profilemanager.py: Don't combine wx.ALIGN_RIGHT and wx.EXPAND. wx.EXPAND overrides alignment flags. new ffb0af2 pyhoca/wxgui/profilemanager.py: Assure that SetColumnWidth paramters are all int (not float). The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: pyhoca-gui | 8 ++++++-- pyhoca/wxgui/profilemanager.py | 8 ++++---- 2 files changed, 10 insertions(+), 6 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 269d2258dde93e2f95887c46a51f2a9e649fccfd Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Aug 8 16:25:31 2023 +0200 pyhoca-gui: Support importing local pyhoca.wxgui module. --- pyhoca-gui | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyhoca-gui b/pyhoca-gui index e24ef4a..71600ac 100755 --- a/pyhoca-gui +++ b/pyhoca-gui @@ -35,8 +35,12 @@ try: except ImportError: pass -from pyhoca.wxgui import __VERSION__ -from pyhoca.wxgui.launcher import PyHocaGUI_Launcher +try: + from .pyhoca.wxgui import __VERSION__ + from .pyhoca.wxgui.launcher import PyHocaGUI_Launcher +except ImportError: + from pyhoca.wxgui import __VERSION__ + from pyhoca.wxgui.launcher import PyHocaGUI_Launcher __author__ = "Mike Gabriel, Dick Kniep" __version__ = __VERSION__ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 6910d067030d91cb295bb670331989cd9fb709b3 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Aug 8 16:30:20 2023 +0200 pyhoca/wxgui/profilemanager.py: Don't combine wx.ALIGN_RIGHT and wx.EXPAND. wx.EXPAND overrides alignment flags. --- pyhoca/wxgui/profilemanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py index ae07acc..5870458 100644 --- a/pyhoca/wxgui/profilemanager.py +++ b/pyhoca/wxgui/profilemanager.py @@ -813,7 +813,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog): sizer_7_1_1_1 = wx.GridBagSizer(vgap=1, hgap=3) sizer_7_1_1_1.Add(self.UseLocalFolderSharing, pos=(0,0)) sizer_7_1_1_1.Add((32,-1), pos=(0,1)) - sizer_7_1_1_1.Add(self.RestoreSharedLocalFolders, pos=(0,2), flag=wx.ALIGN_RIGHT|wx.EXPAND) + sizer_7_1_1_1.Add(self.RestoreSharedLocalFolders, pos=(0,2), flag=wx.EXPAND) sizer_7_1_1_2 = wx.BoxSizer(wx.HORIZONTAL) sizer_7_1_1_2_1 = wx.BoxSizer(wx.HORIZONTAL) sizer_7_1_1_2_1.Add(self.SharedFolderPathLabel, flag=wx.ALIGN_CENTRE_VERTICAL) @@ -825,7 +825,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog): sizer_7_1_1_2_3.Add(self.DeleteSharedFolderPathButton, flag=wx.ALIGN_CENTRE_VERTICAL|wx.LEFT, border=2) sizer_7_1_1_2.Add(sizer_7_1_1_2_1, flag=wx.EXPAND|wx.ALIGN_LEFT) sizer_7_1_1_2.Add(sizer_7_1_1_2_2, proportion=1, flag=wx.EXPAND|wx.ALIGN_LEFT) - sizer_7_1_1_2.Add(sizer_7_1_1_2_3, flag=wx.EXPAND|wx.ALIGN_RIGHT) + sizer_7_1_1_2.Add(sizer_7_1_1_2_3, flag=wx.EXPAND) sizer_7_1_1_3 = wx.BoxSizer(wx.HORIZONTAL) sizer_7_1_1_3.Add(self.SharedFoldersList, proportion=1, flag=wx.EXPAND) sizer_7_1_1.Add(sizer_7_1_1_1, flag=wx.EXPAND|wx.BOTTOM, border=12) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit ffb0af2eecdeced01239f9e24242b6ba9132663c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Aug 8 16:30:52 2023 +0200 pyhoca/wxgui/profilemanager.py: Assure that SetColumnWidth paramters are all int (not float). --- pyhoca/wxgui/profilemanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py index 5870458..9c1d240 100644 --- a/pyhoca/wxgui/profilemanager.py +++ b/pyhoca/wxgui/profilemanager.py @@ -907,8 +907,8 @@ class PyHocaGUI_ProfileManager(wx.Dialog): # derive ListCtrl widths from sizer information _sizer_width = sizer_7_1_1_3.GetSize().GetWidth() - self.SharedFoldersList.SetColumnWidth(0, abs(_sizer_width*.7)) - self.SharedFoldersList.SetColumnWidth(1, abs(_sizer_width*.3)) + self.SharedFoldersList.SetColumnWidth(0, int(abs(_sizer_width*.7))) + self.SharedFoldersList.SetColumnWidth(1, int(abs(_sizer_width*.3))) def __update_fields(self): """\ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git