summaryrefslogtreecommitdiffstats
path: root/src/app_launcher.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app_launcher.c')
-rw-r--r--src/app_launcher.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app_launcher.c b/src/app_launcher.c
index ddb55c8..5c9bddb 100644
--- a/src/app_launcher.c
+++ b/src/app_launcher.c
@@ -38,6 +38,10 @@ G_DEFINE_TYPE_WITH_CODE(AppLauncher, app_launcher,
G_IMPLEMENT_INTERFACE(APPLAUNCHD_TYPE_APP_LAUNCH,
app_launcher_iface_init));
+static void app_launcher_started_cb(AppLauncher *self,
+ const gchar *app_id,
+ gpointer caller);
+
/*
* Internal functions
*/
@@ -215,6 +219,7 @@ static gboolean app_launcher_start_app(AppLauncher *self, AppInfo *app_info)
*/
if (app_info_get_dbus_activated(app_info))
dbus_activation_manager_activate_app(self->dbus_manager, app_info);
+ app_launcher_started_cb(self, app_id, NULL);
return TRUE;
case APP_STATUS_INACTIVE:
if (app_info_get_dbus_activated(app_info))