From 5135af0750683dd88f4a23f704d162f876632a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 25 Jan 2022 20:31:07 +0100 Subject: [PATCH] osdWindow: Don't inherit from St.Widget We don't apply any styling to the toplevel OSD actor, so we can just as well avoid the style machinery and use a plain actor. Part-of: --- js/ui/osdWindow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/osdWindow.js b/js/ui/osdWindow.js index bae4b862a..ce33c069c 100644 --- a/js/ui/osdWindow.js +++ b/js/ui/osdWindow.js @@ -42,7 +42,7 @@ class OsdWindowConstraint extends Clutter.Constraint { }); var OsdWindow = GObject.registerClass( -class OsdWindow extends St.Widget { +class OsdWindow extends Clutter.Actor { _init(monitorIndex) { super._init({ x_expand: true,