Ultra bright display

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
mrustad
Newbie
Newbie
Posts: 2
Joined: Wed Oct 25, 2017 9:40 am

Ultra bright display

Post by mrustad »

I am having an issue with improper display when using remote desktop to connect to my CentOS 7 server. Everything looks fine but when I open my application with Wine the display appears super bright and saturated, to the point you can’t read text in menus. Windows in the background are interfering with windows in the foreground. It’s almost like there is an alpha layer. This is on a virtual machine and the screen appears normal in Hyper-V. Any suggestions towards a fix are greatly appreciated!
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Ultra bright display

Post by Bob Wya »

That's one of my pet hates with Wine! It's probably changing the X Display gamma setting, because reasons!

A simple hack to (probably) fix your issue is:

Code: Select all

wine reg.exe ADD "HKEY_CURRENT_USER\Software\Wine\X11 Driver" "/v" "UseXVidMode" "/t" "REG_SZ" "/d" "N"
Since: XVidMode=Y ; is required to change the X Display gamma setting.

See WineHQ: Useful Registry Keys ...

Bob
mrustad
Newbie
Newbie
Posts: 2
Joined: Wed Oct 25, 2017 9:40 am

Re: Ultra bright display

Post by mrustad »

Thank you for the input! I fixed the issue by changing the color setting in Remote Desktop from Highest Quality (32bit) to True Color (24bit).
Locked