From 0d778d05efc7ff41e80f2d5ec79621caf86336d8 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 2 May 2024 17:33:47 -0400 Subject: [PATCH] fix(network): remove settings button --- cosmic-applet-network/src/app.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cosmic-applet-network/src/app.rs b/cosmic-applet-network/src/app.rs index c0a0abe9..49f7a2b5 100644 --- a/cosmic-applet-network/src/app.rs +++ b/cosmic-applet-network/src/app.rs @@ -818,9 +818,7 @@ impl cosmic::Application for CosmicNetworkApplet { .push(scrollable(Column::with_children(list_col)).height(Length::Fixed(300.0))); } } - content = content.push(padded_control(divider::horizontal::default())); - content = content - .push(menu_button(text(fl!("settings")).size(14)).on_press(Message::OpenSettings)); + self.core .applet .popup_container(content.padding([8, 0, 8, 0]))