Change the Activity execute method to add a result boolean (handle/not handled).
When the camera key is pressed the Shell send and command to the active activity, if that's not handled than it startup org.laptop.CameraActivity.
This commit is contained in:
@@ -85,9 +85,9 @@ class ActivityDbusService(dbus.service.Object):
|
||||
return self._activity.get_shared()
|
||||
|
||||
@dbus.service.method(ACTIVITY_INTERFACE,
|
||||
in_signature="sas", out_signature="")
|
||||
in_signature="sas", out_signature="b")
|
||||
def execute(self, command, args):
|
||||
self._activity.execute(command, args)
|
||||
return self._activity.execute(command, args)
|
||||
|
||||
class Activity(gtk.Window):
|
||||
"""Base Activity class that all other Activities derive from."""
|
||||
@@ -170,7 +170,7 @@ class Activity(gtk.Window):
|
||||
|
||||
def execute(self, command, args):
|
||||
"""Execute the given command with args"""
|
||||
pass
|
||||
return False
|
||||
|
||||
def __destroy_cb(self, window):
|
||||
if self._bus:
|
||||
|
||||
Reference in New Issue
Block a user