From 50449ba7c6bdd4e1ac24dec495c3829013955041 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 20 Jun 2023 22:10:14 -0700 Subject: [PATCH] . --- 0021-compute_layout | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0021-compute_layout b/0021-compute_layout index 203f10d..01cdc9f 100644 --- a/0021-compute_layout +++ b/0021-compute_layout @@ -17,7 +17,7 @@ compute_layout = function(node, x,y, nodes_to_render, preserve_screen_top_of_cur local n = {type='rectangle', drawmode='line', r=node.border.r, g=node.border.g, b=node.border.b, x=node.x, y=node.y, rx=node.rx, ry=node.ry} table.insert(pending_nodes, n) table.insert(nodes_to_render, n) - end + end -- render contents if node.width then node.w = node.width @@ -101,4 +101,4 @@ compute_layout = function(node, x,y, nodes_to_render, preserve_screen_top_of_cur end end return x+node.w,y+node.h -end \ No newline at end of file +end