PsychoPy full screen workaround

Hi,
We are testing a PsychoPy experiment with the Propixx (using PsychoPy 2024.2.4).
Also, we have two screens: Screen 1 is the one showing out to the Propixx and screen 2 is the main screen.

However we are struggling with making the full screen resolution work even in window mode. This line doesn’t work raising this exception

win = visual.Window(fullscr=False, size=(1920, 1080), monitor = MONITOR, color=(1, 1, 1), units=“pix”, screen = 1)

pyglet.gl.lib.GLException: b’invalid operation’

But this line works after reducing the resolution by a little bit in the code

win = visual.Window(fullscr=False, size=(1910, 1070), monitor = MONITOR, color=(1, 1, 1), units=“pix”, screen = 1)

But then again this would work:

win = visual.Window(fullscr=False, size=(1919.5, 1079.5), monitor = MONITOR, color=(1, 1, 1), units=“pix”, screen = 1)

Any suggestions? Thank you for your help or comments in advance.