[tuxdroid-svn] r5994 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-12-17 08:40:06
|
Author: jerome Date: 2009-12-17 09:37:56 +0100 (Thu, 17 Dec 2009) New Revision: 5994 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py Log: * Starting Skype client in a thread. Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-16 13:04:56 UTC (rev 5993) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-17 08:37:56 UTC (rev 5994) @@ -215,7 +215,8 @@ ''' if OnStarted != None: self.skypeClient.OnSkypeStarted = OnStarted - self.skypeClient.start() + thread = threading.Thread(target=self.skypeClient.start) + thread.start() # -------------------------------------------------------------------------- # Stop skype client. |