The branch, master has been updated via 12a986f87b6bb17f169d35169e62aa112e401d69 (commit) from 450a9feb1b38c30ecb88a462c898521330b18114 (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 ----------------------------------------------------------------- commit 12a986f87b6bb17f169d35169e62aa112e401d69 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Jul 19 22:31:13 2013 +0200 Fix size of ,,About...'' windows for Win32 version. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 1 + pyhoca/wxgui/about.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 30ef643..1d26a13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ pyhoca-gui (0.4.0.4-0~x2go1) UNRELEASED; urgency=low * New upstream version (0.4.0.4): - Allow custom window titles for About...windows. + - Fix size of ,,About...'' windows for Win32 version. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 19 Jul 2013 20:57:10 +0200 diff --git a/pyhoca/wxgui/about.py b/pyhoca/wxgui/about.py index 9e3ded0..db5bf55 100644 --- a/pyhoca/wxgui/about.py +++ b/pyhoca/wxgui/about.py @@ -80,7 +80,7 @@ class PyHocaGUI_AboutFrame(wx.Frame): about_what = self._PyHocaGUI.appname if x2go.X2GOCLIENT_OS == 'Windows': - wx.Frame.__init__(self, None, -1, _(u'About %s ...') % about_what, size=(403,319)) + wx.Frame.__init__(self, None, -1, _(u'About %s ...') % about_what, size=(403,340)) else: wx.Frame.__init__(self, None, -1, _(u'About %s ...') % about_what, size=(400,298)) self.Bind(wx.EVT_CLOSE, self.OnHide) 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)).