DiscordStyles/FrostedGlass

Laggy UI

SyonaR opened this issue · 6 comments

After the recent fix involving transparent profile popouts, the theme UI is pretty laggy on every interaction. I tried reloading, as well as redownloading and enabling it, to no avail.

Gibbu commented

Make sure Hardware Acceleration is enabled in your Advanced Discord settings

I had the same issue, for fix it I just deleted the line 216 and 217 in the FrostedGlass.css
Those lines of code are:

-webkit-backdrop-filter: blur(var(--background-image-blur));
backdrop-filter: blur(var(--background-image-blur));

I don't know what it could be but the lag drop almost to 0

I had the same issue, for fix it I just deleted the line 216 and 217 in the FrostedGlass.css Those lines of code are:

-webkit-backdrop-filter: blur(var(--background-image-blur)); backdrop-filter: blur(var(--background-image-blur));

how would you edit the file tho, isnt it imported from the site? would i just save it myself and edit it there?

Yeah, I just copy all of the code and pasted it on the .css file, then deleted the @import.

Gibbu commented

I finally added a --background-blur-visiblity variable that, when set to none will completely disable the blur effect.
As a sort of replacement, you can use this:

#app-mount .bg-1QIAus {
	filter: blur(10px);
}

This will blur the entire image, not just the area of the app.

Sorry it took me forever to reply to this, been busy with other things and I find working on this theme very boring.