PSJahn / blurredwindow

GNU General Public License v3.0
9 stars 2 forks source link

Conflict with 'Remove Reloading Screen' mod #3

Closed DmanMC closed 4 months ago

DmanMC commented 4 months ago

https://modrinth.com/mod/rrls image

blryface commented 4 months ago

for me it seems it's probably because the rrls mod is doing something cursed to the UI which blurred window doesnt expect, I wonder which side should fix this

PSJahn commented 4 months ago

AFAIK this is due to the GLStateManger#clear call, which isn't called with an alpha value of zero which is why this results in the black background. Might be fixable by forcing the clear call to always use alpha 0 but i'd have to check if that would break anything else which I currently do not have the time for.

dima-dencep commented 4 months ago

My fix helps, however I'm not sure if it's correct for other mods, so it's disabled by default

PSJahn commented 4 months ago

My fix helps, however I'm not sure if it's correct for other mods, so it's disabled by default

Thanks for your support! I'll mark this issue as closed.

PSJahn commented 4 months ago

My fix helps, however I'm not sure if it's correct for other mods, so it's disabled by default

One last question though, would you be able to automatically enable this feature if the blurredwindow mod is loaded? (Could be done with a simple FabricLoader#isModLoaded check)

dima-dencep commented 4 months ago

no