The branch, master has been updated via 09b9d09489e6fc4c325bd0a73ac0b9b340edb933 (commit) from 3bdee1820a55752899982778a828e1b912786df2 (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 09b9d09489e6fc4c325bd0a73ac0b9b340edb933 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Apr 18 18:30:55 2012 +0200 fix for last commit ----------------------------------------------------------------------- Summary of changes: pyhoca/wxgui/menus_taskbar.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/pyhoca/wxgui/menus_taskbar.py b/pyhoca/wxgui/menus_taskbar.py index fcd35f4..8c4726e 100644 --- a/pyhoca/wxgui/menus_taskbar.py +++ b/pyhoca/wxgui/menus_taskbar.py @@ -196,9 +196,9 @@ class PyHocaGUI_Menu_TaskbarSessionActions(wx.Menu): _session_status = _s.get_session_info().get_status() if _s is not None and \ - _s.get_session_cmd() in x2go.defaults.X2GO_DESKTOPSESSIONS and \ - _session_status == 'R' and \ - not _s.is_published_applications_provider(): + _s.get_session_type() in ('D', 'S') and \ + _session_status == 'R' and \ + not _s.is_published_applications_provider(): _title = self.Append(text=_("Window title") + ": " + _s.get_session_title(), id=wx.NewId()) self.AppendSeparator() 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)).