diff options
author | Drew DeVault <[email protected]> | 2015-08-16 22:11:33 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-16 22:11:33 -0400 |
commit | cb504c8f7b0face15a29de5b3b9f12ffe8bc6848 (patch) | |
tree | 1351a85fa95badc95b0408387c90c366495c28ab /sway/layout.c | |
parent | 9e56d72e112b20f0d1dc42b377ab9b07816f9d16 (diff) | |
parent | f1d5305dc61944deebbab2322118d7a1a15b998e (diff) |
Merge pull request #53 from taiyu-len/master
send_to_back/bring_to_front set when view changes visibility.
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/layout.c b/sway/layout.c index a6d6fcbb..4407742a 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -237,7 +237,7 @@ void unfocus_all(swayc_t *container) { } void focus_view(swayc_t *view) { - sway_log(L_DEBUG, "Setting focus for %p", view); + sway_log(L_DEBUG, "Setting focus for %p:%ld", view, view->handle); swayc_t *c = view; //Set focus from root to view while (c != &root_container) { @@ -272,4 +272,3 @@ void focus_view_for(swayc_t *top, swayc_t *view) { } } - |