From 768be91e09ac59675041449571f0ad69d2f642c7 Mon Sep 17 00:00:00 2001 From: Will McKinnon Date: Sun, 25 Dec 2022 13:40:07 -0500 Subject: [PATCH] revert: temp removed smart gaps support due to bug --- sway/desktop/render.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sway/desktop/render.c b/sway/desktop/render.c index 78d4e019..28f69614 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -951,9 +951,10 @@ static void render_containers_linear(struct sway_output *output, ? config->dim_inactive_colors.urgent : config->dim_inactive_colors.unfocused, .dim = child->current.focused ? 0.0f: config->dim_inactive, - // no corner radius if smart gaps are on and only visible view - .corner_radius = config->smart_gaps == SMART_GAPS_ON && - view_ancestor_is_only_visible(view) ? 0 : child->corner_radius, + // no corner radius if smart gaps are on and only visible view TODO: FIX + //.corner_radius = config->smart_gaps == SMART_GAPS_ON && + //view_ancestor_is_only_visible(view) ? 0 : child->corner_radius, + .corner_radius = child->corner_radius, .saturation = child->saturation, .has_titlebar = has_titlebar, };