summaryrefslogtreecommitdiffstats
path: root/sway/handlers.c
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-09-22 09:41:01 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-09-22 09:41:01 -0700
commit6c33f8122a3c4bb8fc22129d1d2ad03f535885f7 (patch)
tree443f1c25df9193c0533710df78be0d7e7d0816ed /sway/handlers.c
parentMerge pull request #183 from mikkeloscar/wlc-dep (diff)
downloadsway-6c33f8122a3c4bb8fc22129d1d2ad03f535885f7.tar.gz
sway-6c33f8122a3c4bb8fc22129d1d2ad03f535885f7.tar.zst
sway-6c33f8122a3c4bb8fc22129d1d2ad03f535885f7.zip
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 096df53c..cef4a980 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -253,8 +253,8 @@ static void handle_view_focus(wlc_handle view, bool focus) {
253} 253}
254 254
255static void handle_view_geometry_request(wlc_handle handle, const struct wlc_geometry *geometry) { 255static void handle_view_geometry_request(wlc_handle handle, const struct wlc_geometry *geometry) {
256 sway_log(L_DEBUG, "geometry request %d x %d : %d x %d", 256 sway_log(L_DEBUG, "geometry request for %ld %dx%d : %dx%d",
257 geometry->origin.x, geometry->origin.y, geometry->size.w, geometry->size.h); 257 handle, geometry->origin.x, geometry->origin.y, geometry->size.w, geometry->size.h);
258 // If the view is floating, then apply the geometry. 258 // If the view is floating, then apply the geometry.
259 // Otherwise save the desired width/height for the view. 259 // Otherwise save the desired width/height for the view.
260 // This will not do anything for the time being as WLC improperly sends geometry requests 260 // This will not do anything for the time being as WLC improperly sends geometry requests