From efae49e90b0c1c7432ed8b9da14e2fe3c3889d01 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 2 May 2024 17:40:00 -0400 Subject: [PATCH] fix(bluetooth): remove settings button --- cosmic-applet-bluetooth/src/app.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cosmic-applet-bluetooth/src/app.rs b/cosmic-applet-bluetooth/src/app.rs index a5f92a2f..df7490a1 100644 --- a/cosmic-applet-bluetooth/src/app.rs +++ b/cosmic-applet-bluetooth/src/app.rs @@ -551,11 +551,7 @@ impl cosmic::Application for CosmicBluetoothApplet { } else { content = content.push(Column::with_children(list_column)); } - content = content.push(padded_control(divider::horizontal::default())); - content = content.push( - menu_button(text(fl!("settings")).size(14).width(Length::Fill)) - .on_press(Message::OpenSettings), - ); + self.core.applet.popup_container(content).into() }