diff options
author | taiyu <[email protected]> | 2015-08-16 18:59:12 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-08-16 18:59:12 -0700 |
commit | 40772387829736f5a73bc4f97968b2e44b28a333 (patch) | |
tree | 9bd9d5380a4da8f1abdbedaf85367b5daeecc9f4 /sway/layout.c | |
parent | ffb34583220005889fea117d3b9bc65a4714b6bf (diff) |
sends hidden views to back, visible view to front
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/layout.c b/sway/layout.c index a6d6fcbb..963bd8dc 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) { |