From dd67fdb6c3824eae4c2f0207526e155e0d390d17 Mon Sep 17 00:00:00 2001 From: Will McKinnon Date: Mon, 23 Jan 2023 02:35:46 -0500 Subject: [PATCH] fix: don't round view popup corners --- sway/desktop/render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/desktop/render.c b/sway/desktop/render.c index 1ecada45..467ab440 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -1473,9 +1473,9 @@ void output_render(struct sway_output *output, struct timespec *when, ? config->dim_inactive_colors.urgent : config->dim_inactive_colors.unfocused, .dim = focus->current.focused ? 0.0f: config->dim_inactive, - .corner_radius = focus->corner_radius, + .corner_radius = 0, .saturation = focus->saturation, - .has_titlebar = focus->current.border == B_NORMAL, + .has_titlebar = false, }; render_view_popups(focus->view, output, damage, deco_data); }