diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-07-30 10:17:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-30 10:17:31 -0400 |
commit | 2e4ece65da7e2afe5da1d3347c88bda48b1efa90 (patch) | |
tree | 1867cf64da858a89a2fda1884bf25c2809770f6c /sway | |
parent | e3104a48e387a91b12952089595f447f286f3fea (diff) | |
parent | e6af5f8bdbd98d1ece927b67d9ef881f3511e087 (diff) |
Merge pull request #803 from zandrmartin/x11-pids
update handler to get pid from wlc for all views - now ok to merge
Diffstat (limited to 'sway')
-rw-r--r-- | sway/handlers.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index 7d7b2539..bdcdcaa4 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -290,9 +290,7 @@ static bool handle_view_created(wlc_handle handle) { } if (client) { - // below only works on wayland windows. need a wlc - // api that will work for both wayland and x. - wl_client_get_credentials(client, &pid, NULL, NULL); + pid = wlc_view_get_pid(handle); if (pid) { // using newview as a temp storage location here, |