Update transparency on geometry reset

This commit is contained in:
CharlesG
2020-04-13 12:53:48 -04:00
parent aa4e83a7d4
commit 0058f8c30f
4 changed files with 13 additions and 13 deletions

View File

@@ -423,11 +423,9 @@ var PreviewMenu = Utils.defineClass({
fixed: Me.settings.get_boolean('window-preview-fixed-y')
};
if (this.panel.dynamicTransparency) {
alphaBg = Me.settings.get_boolean('preview-use-custom-opacity') ?
Me.settings.get_int('preview-custom-opacity') * .01 :
this.panel.dynamicTransparency.alpha;
}
alphaBg = Me.settings.get_boolean('preview-use-custom-opacity') ?
Me.settings.get_int('preview-custom-opacity') * .01 :
this.panel.dynamicTransparency.alpha;
},
_updateClip: function() {