Ticket #258: zhone_2008-11-26.diff
| File zhone_2008-11-26.diff, 1.2 KB (added by AntonTakk, 3 years ago) |
|---|
-
zhone
old new 184 184 elif key in "dial": 185 185 if dbus_object.gsm_device_obj: 186 186 dbus_object.gsm_call_iface.Initiate( "".join(self.text), "voice" ) 187 self.main.transition_to("call") 187 188 else: 188 189 # Fake onCallStatus... 189 190 self.main.groups["call"].onCallStatus( None, "outgoing", {"peer": "".join(self.text)} ) … … 239 240 if self.status in ["outgoing", "active", "incoming", "held"]: 240 241 if dbus_object.gsm_device_obj: 241 242 dbus_object.gsm_call_iface.Release(self.call) 243 self.main.transition_to("main") 242 244 else: 243 245 self.update_status("release") 244 246 … … 882 884 if self.selected is not None: 883 885 if dbus_object.gsm_device_obj: 884 886 dbus_object.gsm_call_iface.Initiate( self.current[self.selected][2], "voice" ) 887 self.main.transition_to("call") 885 888 else: 886 889 # Fake onCallStatus... 887 890 self.main.groups["call"].onCallStatus( None, "outgoing", {"peer": self.current[self.selected][2]} )
