From f3dbaae6e8828b9748b847239941ee091363391a Mon Sep 17 00:00:00 2001 From: jean-emmanuel Date: Wed, 14 Jan 2026 15:35:38 +0100 Subject: [PATCH] Metabutton: avoid prelight from affecting vertical separator line --- libs/widgets/metabutton.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/widgets/metabutton.cc b/libs/widgets/metabutton.cc index de8266c4bb..bfd2dc1507 100644 --- a/libs/widgets/metabutton.cc +++ b/libs/widgets/metabutton.cc @@ -257,7 +257,7 @@ MetaButton::render (Cairo::RefPtr const& ctx, cairo_rectangle_t* if (_hover_dropdown) { Gtkmm2ext::rounded_right_half_rectangle (cr, get_width () - _diameter - 6, 1, _diameter + 5, get_height () - 2, corner_radius); } else { - Gtkmm2ext::rounded_left_half_rectangle (cr, 1, 1, get_width () - _diameter - 7, get_height () - 2, corner_radius); + Gtkmm2ext::rounded_left_half_rectangle (cr, 1, 1, get_width () - _diameter - 8, get_height () - 2, corner_radius); } cairo_set_source_rgba (cr, 0.905, 0.917, 0.925, 0.2); cairo_fill (cr);