From: Ingo Bürk Date: Thu, 22 Oct 2015 22:38:11 +0000 (+0200) Subject: Remove broken and unused debug borders. X-Git-Tag: 4.12~122^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f67678157630702e46d99e82fa549d0829e131db;p=i3%2Fi3 Remove broken and unused debug borders. --- diff --git a/src/render.c b/src/render.c index f8c49c38..9fa40f03 100644 --- a/src/render.c +++ b/src/render.c @@ -21,10 +21,6 @@ static void render_con_stacked(Con *con, Con *child, render_params *p, int i); static void render_con_tabbed(Con *con, Con *child, render_params *p, int i); static void render_con_dockarea(Con *con, Con *child, render_params *p); -/* change this to 'true' if you want to have additional borders around every - * container (for debugging purposes) */ -static bool show_debug_borders = false; - /* * Returns the height for the decorations */ @@ -54,15 +50,6 @@ void render_con(Con *con, bool render_fullscreen) { (render_fullscreen ? "fullscreen " : ""), con, con->name, con->layout, params.children); - /* Display a border if this is a leaf node. For container nodes, we don’t - * draw borders (except when in debug mode) */ - if (show_debug_borders) { - params.rect.x += 2; - params.rect.y += 2; - params.rect.width -= 2 * 2; - params.rect.height -= 2 * 2; - } - int i = 0; con->mapped = true;