Older drivers works! I got a recent 466.11 and It makes a problem with UE4 UI
Disabling window animations fixed it for me in 4.26.2-15973114+++UE4+Release-4.26
. Seems kind of obnoxious to have an editor option that will basically make the editor unusable on any system ÂŻ\(ă)/ÂŻ
in win 10 you cant disable anymore. only in win7
i cant find a solution . i dont wont install old drivers
Anyone knows another way I can access the editor settings, This glitch wont let me click on anything :S
Restarting the editor is the only way besides maybe duplicating the project.
Disabling âEnable Window Animationsâ from the answer below fixed it for me. You can use the up/down arrow keys to select the menu item since selecting with the mouse probably wonât work.
Same issue on Ue4 2.27 and NVIDIA 472.12
Did try that, it last some more but it happens again.
Ue4 2.27 and NVIDIA 472.12
Has anyone reported this to Nvidia? Seems like it may be on their end⌠I have had the same issue for a while but thought it was the game ready driver switch i did recently⌠have had the Studio driver for a long time w/o issues⌠will look that driver up but Nividia would probably benefit knowing about it
Will this ever be fixed?
I had the same issue with flickering menus/editor in UE5 on Windows 10 and RTX3060, nvidia drivers up-to-date version 512.59 (both Game Ready and Studio versions). What seems to have fixed it for me was to go in Windowsâ Control Panel and switch on Hardware-accelerated GPU scheduling (Control Panel->Display->Graphics Settings).
Still happening with UE 4.27 on Win11 and an RTX3080Ti.
HEREâS THE FIX
Itâs 2022 and Iâve got the most up to date drivers, and this is still happening with version 4.27.2. Have not used 5.0 yet, so do not know if itâs fixed in that version, but 4.27.2 is the newest version before 5.0, so I doubt itâs fixed in prior versions.
Iâm disabling High DPI Support like one person suggested, as Window Animations are already disabled, and thereâs nothing else I can do (besides using 5.0 only, but that would most likely break all my projects). Hopefully that fixes it.
Iâd imagine itâs some issue with the multiplane overlays that get composited in the desktop window manager. There were a ton of issues that started up a year or two ago because both Microsoft and Nvidia both flipped it on all the way. The problems werenât just with UE, but with games and apps as well. Donât know if it still works, but thereâs a registry key you can add that disables it. Youâll have to google around for it, just look up âwindows disable mpo.â Make sure to restart the PC after you change it. See if the problem still persists.
Oh and make sure youâre on Windows 10 or 11 21H2 and that youâre fully up to date with system updates.
EDIT: Saved you some digging: After updating to NVIDIA Game Ready Driver 461.09 or newer, some desktop apps may flicker or stutter when resizing the window on some PC configurations | NVIDIA
Thereâs a couple .reg files you can download to turn it on and off. Again, make sure to restart after using one.
So far so good, that seems to have fixed it! Thank you!
Hi!
Thank you very much for the Nvidia Link.
Do you know, where these registry entries will be placed,
bc Iâm not comfortable with just adding them automatically.
I would enter them manually, so that I can turn them off again, in case they mess with some other programs.
Looking forward to hear from you!
They go in:
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm
And the keys are simple, if itâs not there or you delete it, it enables MPO. If it is there, it has a DWORD named OverlayTestMode
and a value of 5.
Within the MPO disable .reg:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm]
âOverlayTestModeâ=dword:00000005
Within the enable .reg:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm]
âOverlayTestModeâ=-
(it removes the key)
As you can see, itâs just a single key and nothing too complex. So using the two .reg files will save you time. Make sure to reboot after changing.
Thank you very much for your reply!