summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel van Vugt <daniel.van.vugt@canonical.com>2019-04-01 17:47:48 +0800
committerCarlos Garnacho <mrgarnacho@gmail.com>2019-04-01 10:34:51 +0000
commit9d49e8abd077941b126685dde3b64753cc4fc916 (patch)
tree21af46df65363cc5d1a9ff20d11e7b1d88ec2af5
parent4043d0b45531c84912b59fe4c144091a52dc44a6 (diff)
downloadmutter-9d49e8abd077941b126685dde3b64753cc4fc916.tar.gz
launch-context: Swap reversed timestamp/workspace
The parameters had been mixed up for X11 sessions. Closes: https://gitlab.gnome.org/GNOME/mutter/issues/505
-rw-r--r--src/core/meta-launch-context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/meta-launch-context.c b/src/core/meta-launch-context.c
index eb8671bb2..eda51514f 100644
--- a/src/core/meta-launch-context.c
+++ b/src/core/meta-launch-context.c
@@ -142,8 +142,8 @@ meta_launch_context_get_startup_notify_id (GAppLaunchContext *launch_context,
startup_id =
meta_x11_startup_notification_launch (display->x11_display,
info,
- workspace_idx,
- context->timestamp);
+ context->timestamp,
+ workspace_idx);
}
if (!startup_id)