diff options
author | Drew DeVault <[email protected]> | 2015-08-22 15:19:02 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-22 15:19:02 -0400 |
commit | 07229edfe627762df9c27ed2700d737f74bb7b88 (patch) | |
tree | 9808dad1127cd98a8dbe91e7b16f75ccb056c1bb /sway/container.c | |
parent | eac0920f49a728ad6a3809528c4757b73e4cd8af (diff) |
Implement output positioning
:tada:
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c index 41d21c3b..67a34551 100644 --- a/sway/container.c +++ b/sway/container.c @@ -86,6 +86,7 @@ swayc_t *new_output(wlc_handle handle) { // Find position for it if (oc && oc->x != -1 && oc->y != -1) { + sway_log(L_DEBUG, "Set %s position to %d, %d", name, oc->x, oc->y); output->x = oc->x; output->y = oc->y; } else { |