diff --git a/src/extension.ts b/src/extension.ts index 1a12cfe..54634b4 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -235,14 +235,7 @@ export default class WifiSignalPlusExtension extends Extension { menu.addMenuItem(this.nearbySeparator); this.nearbySection = new PopupMenu.PopupMenuSection(); - const scrollView = new St.ScrollView({ - style_class: 'wifi-nearby-scroll', - overlay_scrollbars: true, - }); - scrollView.add_child(this.nearbySection.actor); - const scrollItem = new PopupMenu.PopupBaseMenuItem({ reactive: false }); - scrollItem.add_child(scrollView); - menu.addMenuItem(scrollItem); + menu.addMenuItem(this.nearbySection); } private addConnectionHeader(menu: PopupMenu.PopupMenu): void { diff --git a/stylesheet.css b/stylesheet.css index bc124e3..3052430 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -143,11 +143,6 @@ color: #e01b24; } -/* Nearby networks - Scroll container */ -.wifi-nearby-scroll { - max-height: 250px; -} - /* Nearby networks - Card header */ .wifi-nearby-card { margin: 2px 0;