[X2Go-Commits] pyhoca-gui.git - build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d (branch) updated: 0.1.0.10-112-gd2b5aed

X2Go dev team git-admin at x2go.org
Tue Aug 27 13:22:07 CEST 2013


The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
       via  d2b5aed4c583497efcf5bec696beeaee745a1ea9 (commit)
      from  03894b689b5b367e29ab4c284e60f82e6faef818 (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:
 debian/changelog               |    1 +
 pyhoca/wxgui/profilemanager.py |    8 ++++++++
 2 files changed, 9 insertions(+)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 4a44d55..7f88989 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -67,6 +67,7 @@ pyhoca-gui (0.1.2.0-0~x2go1) UNRELEASED; urgency=low
       Boolean command line option).
     - Move rendering of menu tree partially into Python X2Go.
     - Update of en/de i18n files.
+    - Fix disabling of published applications tick box in profile manager.
   * Depend on Python X2Go 0.1.2.0.
   * Install GNOME icons via dh_links.
   * Install X2Go icons with explicit install paths.
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index cd1c2af..9c9fcd3 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -846,6 +846,8 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
             self.Application.Enable(True)
             self.Application.SetValue(self.applicationChoices[_command])
             self.Command.SetValue('')
+            self.UsePublishedApplications.SetValue(False)
+            self.UsePublishedApplications.Enable(False)
         elif not _command and _published:
             self.SessionType.SetValue(self.sessionChoices['PUBLISHEDAPPLICATIONS'])
             self.UsePublishedApplications.Enable(False)
@@ -853,18 +855,24 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
             self._last_pubapp_value = True
         else:
             self.SessionType.SetValue(self.sessionChoices['CUSTOM'])
+            self.UsePublishedApplications.SetValue(False)
+            self.UsePublishedApplications.Enable(False)
             self.Command.Enable(True)
             self.Command.SetValue(_command)
 
         if _command == 'XDMCP':
             self.XDMCPServerLabel.Enable(True)
             self.XDMCPServer.Enable(True)
+            self.UsePublishedApplications.SetValue(False)
+            self.UsePublishedApplications.Enable(False)
 
         if _command in ('RDP', 'DirectRDP'):
             self.RDPServerLabel.Enable(True)
             self.RDPServer.Enable(True)
             self.RDPOptionsLabel.Enable(True)
             self.RDPOptions.Enable(True)
+            self.UsePublishedApplications.SetValue(False)
+            self.UsePublishedApplications.Enable(False)
         else:
             self.RDPServerLabel.Enable(False)
             self.RDPServer.Enable(False)


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)).




More information about the x2go-commits mailing list