From 61e3415ddc060f1e35693df032e007b513dc8e7f Mon Sep 17 00:00:00 2001
From: Michael Stapelberg <michael@stapelberg.de>
Date: Sun, 28 Nov 2010 20:43:35 +0100
Subject: [PATCH] Bugfix: Add deco_height to bsr.y (to configure the
 floatingcon correctly). Fixes t/12-floating-resize.t

---
 src/handlers.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/handlers.c b/src/handlers.c
index 1f86de0e..ab41604d 100644
--- a/src/handlers.c
+++ b/src/handlers.c
@@ -371,8 +371,10 @@ int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure
         /* we actually need to apply the size/position changes to the *parent*
          * container */
         Rect bsr = con_border_style_rect(con);
-        if (con->border_style == BS_NORMAL)
+        if (con->border_style == BS_NORMAL) {
+            bsr.y += deco_height;
             bsr.height -= deco_height;
+        }
         con = con->parent;
         DLOG("Container is a floating leaf node, will do that.\n");
         if (event->value_mask & XCB_CONFIG_WINDOW_X) {