diff --git a/cosmic-applet-network/i18n/en/cosmic_applet_network.ftl b/cosmic-applet-network/i18n/en/cosmic_applet_network.ftl index 37db15fd..771e3357 100644 --- a/cosmic-applet-network/i18n/en/cosmic_applet_network.ftl +++ b/cosmic-applet-network/i18n/en/cosmic_applet_network.ftl @@ -11,6 +11,7 @@ connected = Connected connecting = Connecting connect = Connect cancel = Cancel +settings = Network Settings... visible-wireless-networks = Visible Wireless Networks enter-password = Enter the password or encryption key router-wps-button = You can also connect by pressing the "WPS" button on the router diff --git a/cosmic-applet-network/src/app.rs b/cosmic-applet-network/src/app.rs index a70a891c..7a395391 100644 --- a/cosmic-applet-network/src/app.rs +++ b/cosmic-applet-network/src/app.rs @@ -651,6 +651,7 @@ impl cosmic::Application for CosmicNetworkApplet { .height(Length::Fixed(24.0)), ]) .on_press(Message::ToggleVisibleNetworks); + content = content.push(padded_control(divider::horizontal::default())); content = content.push(available_connections_btn); } if self.show_visible_networks { @@ -782,6 +783,8 @@ 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))); self.core .applet .popup_container(content.padding([8, 0, 8, 0]))