From e9e2e4d851a7075a7b47d9ce041f44e5a9390c2a Mon Sep 17 00:00:00 2001 From: Florian Müllner Date: May 13 2020 14:11:11 +0000 Subject: Initialize opacity We currently only deal with opacity *changes*, but never set the initial value, oops. https://pagure.io/background-logo-extension/issue/24 --- diff --git a/extension.js b/extension.js index f651432..17ef053 100644 --- a/extension.js +++ b/extension.js @@ -112,6 +112,7 @@ var BackgroundLogo = GObject.registerClass({ this._updateLogo(); this._updatePosition(); this._updateBorder(); + this._updateOpacity(); this._bgDestroyedId = bgManager.backgroundActor.connect('destroy', this._backgroundDestroyed.bind(this));