darklinkpower/Stardust

[BUG] Grainy Background Image

Official-Husko opened this issue · 6 comments

Bug Description

There seems to be a bug introduced in the latest release 2.61 which makes the background images grainy.

To Reproduce

Install version 2.61 and look at the background

Extensions log

No response

Screenshots

Background in 2.60

version_2-60

Background in 2.61

version_2-61

It's a noise layer to improve readability of foreground elements. I'll reduce it and implement an option to control it in a future update, for the moment you can modify this value in your local installation:

<sys:Double x:Key="DetailsBackgroundDarkenLayerOpacity">0.45</sys:Double>

It's a noise layer to improve readability of foreground elements. I'll reduce it and implement an option to control it in a future update, for the moment you can modify this value in your local installation:

<sys:Double x:Key="DetailsBackgroundDarkenLayerOpacity">0.45</sys:Double>

Thank you for the info and for the theme of course. I really enjoy it :D

Glad you like it!

Glad you like it!

I tried the mentioned temporary fix and after putting it to 0 the image still has "artifacts" in it. Due to GitHubs image compression the effect is once again less visible but its definitely noticeable in the app.

2.61 with the mentioned hotfix set to 0
ShareX_q9jzOj5UPH

2.60
ShareX_BWze9fnAXM

It's from the other layer, which doesn't use that opacity value. If you prefer, you can delete them altogether or set a value directly here:

<Border Background="{StaticResource DarkNoiseBrush}" IsHitTestVisible="False"
Grid.RowSpan="2"
Opacity="{DynamicResource DetailsBackgroundDarkenLayerOpacity}" />
<Border x:Name="ImageBackgroundNoise"
Grid.RowSpan="2"
Background="{DynamicResource NoiseBrush}"
Opacity="0.030"/>

Thank you that fixed the issue completely. Appreciate the quick responses!