aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-18 07:13:02 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-18 07:13:02 -0500
commit41e71d950a031ac5e63b0695e47dbfe1606e9f93 (patch)
tree191e2b1b49234692de5c382cc695fa5c78aade46 /sway
parentcleanup input-manager (diff)
downloadsway-41e71d950a031ac5e63b0695e47dbfe1606e9f93.tar.gz
sway-41e71d950a031ac5e63b0695e47dbfe1606e9f93.tar.zst
sway-41e71d950a031ac5e63b0695e47dbfe1606e9f93.zip
remove verbose commit logging
Diffstat (limited to 'sway')
-rw-r--r--sway/desktop/wl_shell.c2
-rw-r--r--sway/desktop/xdg_shell_v6.c2
-rw-r--r--sway/desktop/xwayland.c2
3 files changed, 0 insertions, 6 deletions
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
index df81d5be..e7150bf3 100644
--- a/sway/desktop/wl_shell.c
+++ b/sway/desktop/wl_shell.c
@@ -55,8 +55,6 @@ static void handle_commit(struct wl_listener *listener, void *data) {
55 struct sway_wl_shell_surface *sway_surface = 55 struct sway_wl_shell_surface *sway_surface =
56 wl_container_of(listener, sway_surface, commit); 56 wl_container_of(listener, sway_surface, commit);
57 struct sway_view *view = sway_surface->view; 57 struct sway_view *view = sway_surface->view;
58 sway_log(L_DEBUG, "wl_shell surface commit %dx%d",
59 sway_surface->pending_width, sway_surface->pending_height);
60 // NOTE: We intentionally discard the view's desired width here 58 // NOTE: We intentionally discard the view's desired width here
61 // TODO: Let floating views do whatever 59 // TODO: Let floating views do whatever
62 view->width = sway_surface->pending_width; 60 view->width = sway_surface->pending_width;
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index 82775e2f..015cc9d0 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -61,8 +61,6 @@ static void handle_commit(struct wl_listener *listener, void *data) {
61 struct sway_xdg_surface_v6 *sway_surface = 61 struct sway_xdg_surface_v6 *sway_surface =
62 wl_container_of(listener, sway_surface, commit); 62 wl_container_of(listener, sway_surface, commit);
63 struct sway_view *view = sway_surface->view; 63 struct sway_view *view = sway_surface->view;
64 sway_log(L_DEBUG, "xdg surface commit %dx%d",
65 sway_surface->pending_width, sway_surface->pending_height);
66 // NOTE: We intentionally discard the view's desired width here 64 // NOTE: We intentionally discard the view's desired width here
67 // TODO: Let floating views do whatever 65 // TODO: Let floating views do whatever
68 view->width = sway_surface->pending_width; 66 view->width = sway_surface->pending_width;
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 29bed955..42e82c64 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -84,8 +84,6 @@ static void handle_commit(struct wl_listener *listener, void *data) {
84 struct sway_xwayland_surface *sway_surface = 84 struct sway_xwayland_surface *sway_surface =
85 wl_container_of(listener, sway_surface, commit); 85 wl_container_of(listener, sway_surface, commit);
86 struct sway_view *view = sway_surface->view; 86 struct sway_view *view = sway_surface->view;
87 sway_log(L_DEBUG, "xwayland surface commit %dx%d",
88 sway_surface->pending_width, sway_surface->pending_height);
89 // NOTE: We intentionally discard the view's desired width here 87 // NOTE: We intentionally discard the view's desired width here
90 // TODO: Let floating views do whatever 88 // TODO: Let floating views do whatever
91 view->width = sway_surface->pending_width; 89 view->width = sway_surface->pending_width;