WIM (WoW Instant Messenger) v3

17M Downloads

Change window fading alpha percent

trying-to-function opened this issue ยท 2 comments

commented

Is your feature request related to a problem? Please describe.
When enabling Settings -> Display Settings -> Enable window fading effects the transparency is too dim I cannot read very well without highlighting the window.

Describe the solution you'd like
Ability to change the transparency percentage.

Describe alternatives you've considered
I've tried manually editing lua files without success. I could not find the correct variable location. Please advise where I can manually change if this is not a wanted/helpful feature for others.

Additional context
n/a

commented

It currently doesn't have an option for this. If you want to change it in the code it can be found in WIM/Sources/WindowHandler.lua line 113:

local FadeProps = {
	min = .5,
	max = 1,
	interval = .25,
	delay = 2
};

You will want to change the min value to something higher. currently it fades to 50%.

commented

That worked great for me, thank you! Feel free to close this if you want.