diff --git a/hosts/wim/config/ags/js/applauncher/main.js b/hosts/wim/config/ags/js/applauncher/main.js index c121511a..8f7e9c91 100644 --- a/hosts/wim/config/ags/js/applauncher/main.js +++ b/hosts/wim/config/ags/js/applauncher/main.js @@ -1,6 +1,5 @@ import { App, Applications, Utils, Widget } from '../../imports.js'; const { Label, Box, Icon, Button, Scrollable, Entry, EventBox } = Widget; -const { getWindow } = App import { Separator } from '../misc/separator.js'; import { PopupWindow } from '../misc/popup.js'; @@ -120,10 +119,10 @@ export default PopupWindow({ name: 'applauncher', child: EventBox({ onHover: () => { - getWindow('applauncher').focusable = true; + App.getWindow('applauncher').focusable = true; }, onHoverLost: () => { - getWindow('applauncher').focusable = false; + App.getWindow('applauncher').focusable = false; }, child: Applauncher(), }), diff --git a/hosts/wim/config/ags/js/media-player/player.js b/hosts/wim/config/ags/js/media-player/player.js index 5553c493..3a752ec9 100644 --- a/hosts/wim/config/ags/js/media-player/player.js +++ b/hosts/wim/config/ags/js/media-player/player.js @@ -24,7 +24,6 @@ const Center = player => Box({ CenterBox({ vertical: true, children: [ - Box({ className: 'metadata', vertical: true,