From e677ceba14138dfc4f9083c7202451733cd9b1fc Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Wed, 25 Oct 2023 11:13:46 -0400 Subject: [PATCH] fix(graphics): alignment of popup title --- cosmic-applet-graphics/src/window.rs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cosmic-applet-graphics/src/window.rs b/cosmic-applet-graphics/src/window.rs index f3d4d3ff..c149ab27 100644 --- a/cosmic-applet-graphics/src/window.rs +++ b/cosmic-applet-graphics/src/window.rs @@ -313,11 +313,13 @@ impl cosmic::Application for Window { .applet .popup_container( column(vec![ - text(fl!("graphics-mode")) - .width(Length::Fill) - .horizontal_alignment(Horizontal::Center) - .size(14) - .into(), + padded_control( + text(fl!("graphics-mode")) + .width(Length::Fill) + .horizontal_alignment(Horizontal::Left) + .size(14), + ) + .into(), padded_control(divider::horizontal::default()).into(), column(content_list).into(), ])