mirror of
https://github.com/swaywm/sway.git
synced 2025-11-10 13:29:51 -05:00
log: add newline
This commit is contained in:
parent
8597c3c7e7
commit
56d29bbec5
3 changed files with 20 additions and 1 deletions
|
|
@ -42,6 +42,10 @@ void arrange_windows(swayc_t *container, int width, int height) {
|
|||
return;
|
||||
case C_VIEW:
|
||||
sway_log(L_DEBUG, "Setting view to %d x %d @ %d, %d", width, height, container->x, container->y);
|
||||
// If the view is fullscreen, we need to tell wlc to draw it as such
|
||||
if (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN > 0) {
|
||||
sway_log(L_DEBUG, "window is fullscreen!");
|
||||
}
|
||||
struct wlc_geometry geometry = {
|
||||
.origin = {
|
||||
.x = container->x,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue