diff options
author | Ted Gould <ted@gould.cx> | 2015-03-04 23:59:32 +0000 |
---|---|---|
committer | CI Train Bot <ci-train-bot@canonical.com> | 2015-03-04 23:59:32 +0000 |
commit | faf0bcde9a89611108933588d015f70962946231 (patch) | |
tree | 4ce138538506a6dc8760d5f9447658a17b70f94b | |
parent | 09f8736a9282005658341f4789d99ccfcb59eca1 (diff) | |
parent | 17fc688a0557e74714d15b69e79b3fce7af7a66b (diff) | |
download | ayatana-indicator-messages-faf0bcde9a89611108933588d015f70962946231.tar.gz ayatana-indicator-messages-faf0bcde9a89611108933588d015f70962946231.tar.bz2 ayatana-indicator-messages-faf0bcde9a89611108933588d015f70962946231.zip |
Make the message actions have the message ID in their names like the muxer
Approved by: Charles Kerr, PS Jenkins bot
-rw-r--r-- | src/im-application-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c index 2d0d7fd..2ccc022 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -1114,7 +1114,7 @@ im_application_list_message_added (Application *app, g_variant_builder_init (&dict_builder, G_VARIANT_TYPE ("a{sv}")); - prefixed_name = g_strjoin (".", app->id, "msg-actions", escaped_name, escaped_name, NULL); + prefixed_name = g_strjoin (".", app->id, "msg-actions", action_name, escaped_name, NULL); g_variant_builder_add (&dict_builder, "{sv}", "name", g_variant_new_string (prefixed_name)); if (label) |